Run ID:8296
提交时间:2025-07-10 16:22:10
#include<bits/stdc++.h> using namespace std; int main(){ int a,b; while(1){ cin>>a>>b; if(a==0&&b==0) return 0; else cout<<a+b<<endl; } }