Run ID:143074

提交时间:2026-01-11 18:46:47

#include<iostream> using namespace std; int main(){ int a,b; while(1){ cin>>a>>b; if(a||b){ cout<<a+b<<"\n"; }else{ break; } } return 0; }