← Back to List

15552번: 빠른 A+B ↗

Solutions

C++14
188 B | 188 chars
#include <iostream>
using namespace std;
int N,A,B;
int main()
{
	cin.tie(NULL);
	ios_base::sync_with_stdio(false);
	cin>>N;
	for(int x=0; x<N; x++)
	{
		cin>>A>>B;
		cout<<A+B<<"\n";
	}
}