[Bronze V] A+B - 2 - 2558
성능 요약
메모리: 2020 KB, 시간: 0 ms
분류
구현(implementation), 사칙연산(arithmetic), 수학(math)
문제 설명
두 정수 A와 B를 입력받은 다음, A+B를 출력하는 프로그램을 작성하시오.
입력
첫째 줄에 A, 둘째 줄에 B가 주어진다. (0 < A, B < 10)
출력
첫째 줄에 A+B를 출력한다.
test
1
2
3
4
5
6
7
8
9
10
11
#include <iostream>
using namespace std;
int main() {
int a, b;
cin >> a >> b;
cout << a + b;
return 0;
}