View Code of Problem 113

#include<bits/stdc++.h>
using namespace std;
int main(){
	int n,m;
	while(cin>>n>>m){
		cout<<n+m<<endl;
		cout<<endl;
		}
	}

Double click to view unformatted code.


Back to problem 113