View Code of Problem 109

#include<iostream>

using namespace std;

int main(void){
	int T;
	long long m,n;
	cin>>T;
	while(T--) {
	    cin>>n>>m;
	    cout<<m+n<<endl;
	}
}

Double click to view unformatted code.


Back to problem 109