1. 程式人生 > >oj網站的訓練題:輸入兩個數A,B,輸出A+B的值

oj網站的訓練題:輸入兩個數A,B,輸出A+B的值

對於每一組測試用例,輸出齊對應的和,每組資料一行。

樣例輸入

1 2
3 4
10 20
0 0

樣例輸出:

3
7
30

程式碼:

#include <iostream>
using namespace std;
int main()
{
    int a,b;
    while(cin>>a>>b)
    {
	    if(a==0&&b==0)
	    {
	        exit(0);
	    }
	    else
	    {
	        cout<<a+b<<endl;
	    }
    }
    return 0;
}