Run ID 作者 问题 语言 测评结果 Time Memory 代码长度 提交时间
157438 wxl20111214 A+B 输入输出练习I C++ Accepted 1 MS 280 KB 205 2026-07-23 21:01:29

Tests(1/1):


Code:

#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; }