반응형
출처: www.acmicpc.net/problem/10950
Input
5
1 1
2 3
3 4
9 8
5 2
Output
2
5
7
17
7
#include <iostream>
#include <cstdio>
using namespace std;
int main(){
int TestCase;
cin>>TestCase;
while(TestCase--){
int a, b;
cin>>a>>b;
cout << a+b << '\n';
}
return 0;
}
반응형
'PS 문제 풀이 > Baekjoon' 카테고리의 다른 글
[BOJ] 백준 10953 A + B - 6 (0) | 2021.02.28 |
---|---|
[BOJ] 백준 1100 하얀칸 (0) | 2021.02.28 |
[BOJ] 백준 2261 가장 가까운 두 점 (0) | 2021.02.28 |
[BOJ] 백준 11758 CCW (0) | 2021.02.28 |
[BOJ] 백준 4354 문자열 제곱 (0) | 2021.02.28 |
댓글