A+B
for each pair of integers A and B ( 0 <= A,B <= 10) , Output the result of A+B on a single line.
Sample Input1 2 3 4Sample Output
3 7
/*This Code is Submitted by 黄仪标 for Problem 1001 at 2012-11-05 21:29:57*/
#include <iostream>
using namespace std;
int main()
{
int lps, rps;
while (cin >> lps >> rps)
{
cout << lps + rps << endl;
}
return 0;
}