문제에서
C++을 사용하고 있고 cin/cout을 사용하고자 한다면, cin.tie(NULL)과 sync_with_stdio(false)를 둘 다 적용해 주고, endl 대신 개행문자(\n)를 쓰자. 단, 이렇게 하면 더 이상 scanf/printf/puts/getchar/putchar 등 C의 입출력 방식을 사용하면 안 된다.
이게 무슨 소리냐, 문제에서 입출력 양이 많아지면 입출력을 하는데 소모되는 시간이 많아져서 시간 초과가 발생한다고 한다. 때문에 이를 방지하기 위해서 해당 두 줄을 입력한다.
ios::sync_with_stdio(false);
cin.tie(null);
#include <bits/stdc++.h>
using namespace std;
int main (void){
ios::sync_with_stdio(false);
cin.tie(NULL);
int n;
cin >> n;
while(n--){
int a,b;
cin >> a>>b;
cout << a+b << "\n";
}
}