#include <iostream>
using namespace std;
int main(void)
{
cin.tie(NULL);
ios_base::sync_with_stdio(false);
int T = 0;
int A = 0;
int B = 0;
cin >> T;
if (T<=1000000)
{
for (int i=0; i<T; i++)
{
cin >> A >> B;
if ((A>=1 and A<=1000) and (B>=1) and (B<=1000))
{
cout << A+B << '\n';
}
}
}
return 0;
}
'Computer Science > 백준 알고리즘' 카테고리의 다른 글
[백준] 15649번 N과 M (1) (파이썬) (0) | 2022.06.29 |
---|---|
[백준] 15596번 정수 N개의 합 (C/C++) (0) | 2022.06.29 |
[백준] 14916번 거스름돈 (파이썬) (0) | 2022.06.29 |
[백준] 14889번 스타트와 링크 (파이썬) (0) | 2022.06.29 |
[백준] 14888번 연산자 끼워넣기 (파이썬) (0) | 2022.06.29 |