Run ID:111008

提交时间:2025-02-25 10:45:50

#include<bits/stdc++.h> using namespace std; int main(){ int a,b; while(true){ cin>>a>>b; if (a ==0 && b== 0){ break; } cout<<a+b<<endl; } return 0 }