728x90
#include <iostream>
using namespace std;
int main() {
int t, a, b;
cin >> t;
for (int i = 0;i < t;i++) {
cin >> a >> b;
cout << a + b << endl;
}
return 0;
}
'BEAKJOON' 카테고리의 다른 글
백준(15552번 빠른 A+B)풀이 C++ (0) | 2020.12.02 |
---|---|
백준(8393번 합)풀이 C++ (0) | 2020.12.02 |
백준(2739번 구구단)풀이 C++ (0) | 2020.12.02 |
백준(2884번 알람 시계)풀이 C++ (0) | 2020.12.02 |
백준(14681번 사분면 고르기)풀이 C++ (0) | 2020.12.02 |