View Code of Problem 113

#include<bits/stdc++.h>//113
using namespace std;

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

Double click to view unformatted code.


Back to problem 113