Run ID:114005
提交时间:2025-03-18 13:50:27
#include<iostream> using namespace std; int main() { int i,a,b,n; while(1) { cin >> a >> b; if(a == 0 && b == 0) break; else cout << a+b <<endl; } return 0; }