| Run ID | 作者 | 问题 | 语言 | 测评结果 | Time | Memory | 代码长度 | 提交时间 |
|---|---|---|---|---|---|---|---|---|
| 157436 | wxl20111214 | A+B 输入输出练习I | C++ | Accepted | 1 MS | 268 KB | 164 | 2026-07-23 20:50:08 |
#include<iostream> using namespace std; int main() { int a,b; while(scanf("%d%d",&a,&b)==2) { printf("%d\n",a+b); } return 0; }