[백준] #15552 빠른 A+B

kkily·2021년 6월 25일
0

[알고리즘]

목록 보기
18/102

문제링크

#include <iostream>

using namespace std;

int main()
{
    ios_base::sync_with_stdio(0);
    cin.tie(0);
    cout.tie(0);
    int t;
    int a, b;

    cin >> t;
    for (int i = 0; i < t; i++)
    {
        cin >> a >> b;
        cout << a + b << "\n";
    }
}
profile
낄리의 개발 블로그╰(*°▽°*)╯

0개의 댓글