Run ID | 作者 | 问题 | 语言 | 测评结果 | Time | Memory | 代码长度 | 提交时间 |
---|---|---|---|---|---|---|---|---|
119546 | 张暄浩 | A+B 输入输出练习I | C++ | Accepted | 1 MS | 200 KB | 137 | 2025-05-17 18:14:21 |
#include<stdio.h> using namespace std; int main(){ int a,b; while(scanf("%d %d",&a,&b) != EOF){ printf("%d\n",a+b); } }