wizen-coder
9/28/2018 - 10:08 AM

样例输入 1 5 10 20 0 0 样例输出 6 30

样例输入 1 5 10 20 0 0 样例输出 6 30

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