728x90
#include <iostream>
using namespace std;
int main() {
cin.tie(NULL);
std::ios_base::sync_with_stdio(false);
int t, a, b;
cin >> t;
for (int i = 0;i < t;i++) {
cin >> a >> b;
cout << a + b << '\n';
}
return 0;
}
'BEAKJOON' 카테고리의 다른 글
백준(2742번 기찍 N)풀이 C++ (0) | 2020.12.02 |
---|---|
백준(2741번 찍기)풀이 C++ (0) | 2020.12.02 |
백준(15552번 빠른 A+B)풀이 C++ (0) | 2020.12.02 |
백준(8393번 합)풀이 C++ (0) | 2020.12.02 |
백준(10950번 A+B - 3)풀이 C++ (0) | 2020.12.02 |