View Code of Problem 111

#include<iostream>

using namespace std;

int main(void){
	long long m,n;
	while(cin>>m>>n){
		if(m==0&n==0){
			break;
		}
		cout<<m+n<<endl;
	}
}

Double click to view unformatted code.


Back to problem 111