View Code of Problem 109

#include<bits/stdc++.h>
using namespace std;
#define max 10000
int main(){
	int n ,a,b;
	cin>>n;
	for(int i = 0;i<n;i++){
		cin>>a>>b;
		cout<<(a+b)<<endl;
	}
	return 0;
} 

Double click to view unformatted code.


Back to problem 109