Run ID | 作者 | 问题 | 语言 | 测评结果 | Time | Memory | 代码长度 | 提交时间 |
---|---|---|---|---|---|---|---|---|
96866 | 吴梓玄 | A+B 输入输出练习III | C++ | Accepted | 0 MS | 204 KB | 181 | 2024-11-09 17:20:11 |
#include <stdio.h> int main() { int a,b,c; while(~scanf("%d%d",&a,&b)){ if (a==0 and b==0){ break; } c=a+b; printf("%d\n",c); } return 0; }