View Code of Problem 110

#include<bits/stdc++.h>
using namespace std;
int main(){
	int a,b;
	while(~scanf("%d%d",&a,&b)){
		int s=0;
		s=a+b;
		cout<<s<<endl;
	}
}

Double click to view unformatted code.


Back to problem 110