Run ID:143092
提交时间:2026-01-11 18:53:22
#include<bits/stdc++.h> using namespace std; int a,b; int main(){ while(1){ cin>>a>>b; if(a==0&&b==0){ return 0; }else{ cout<<a+b<<endl; } } return 0; }