공부 일지/알고리즘

[기초 코드 작성 요령 II]BOJ 15552번 - 빠른 A+B

Roble 2023. 12. 30. 15:22

 

 

 

#include <bits/stdc++.h>
using namespace std;
int main(){
    ios::sync_with_stdio(0);
    cin.tie(0);
    int n, a, b;
    cin >> n;
    while(n--){
        cin >> a >> b;
        cout << a + b << '\n';
    }
}