Run ID:157438
提交时间:2026-07-23 21:01:29
#include<iostream> using namespace std; int main() { ios::sync_with_stdio(false); cin.tie(nullptr); int a,b; while(cin>>a>>b) { cout<<a+b<<'\n'; } return 0; }