Run ID | 作者 | 问题 | 语言 | 测评结果 | Time | Memory | 代码长度 | 提交时间 |
---|---|---|---|---|---|---|---|---|
86151 | 石茂诤 | A+B 输入输出练习I | C++ | Accepted | 0 MS | 200 KB | 161 | 2024-07-22 21:39:36 |
# include<cstdio> using namespace std; int main(){ int a,b; while (scanf("%d %d",&a,&b)!=EOF){ printf("%d \n",a+b); } return 0; }