Run ID 作者 问题 语言 测评结果 Time Memory 代码长度 提交时间
143958 徐景一 A+B 输入输出练习III C++ Accepted 0 MS 268 KB 204 2026-01-18 08:49:25

Tests(1/1):


Code:

#include <iostream> using namespace std; const int N=1e6; int main(){ int a,b; for(int i=0;i<N;i++){ scanf("%d %d",&a,&b); if(a==0&&b==0) break; printf("%d\n",a+b); } return 0; }