View Code of Problem 109

#include<iostream>
#include<algorithm>
#include<math.h>
using namespace std;

int main(){
	int n;
	cin>>n;
	while(n--){
		int x,y;
		cin>>x>>y;
		cout<<x+y<<endl;
	}
	return 0;
}

Double click to view unformatted code.


Back to problem 109