Run ID:58663
提交时间:2023-09-27 16:03:37
#include<iostream> using namespace std; int main(){ int a,b; while(cin>>a>>b){ if(a==0&&b==0)return 0; cout<<a+b<<endl; } return 0; }