View Code of Problem 110

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

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

Double click to view unformatted code.


Back to problem 110