Run ID | 作者 | 问题 | 语言 | 测评结果 | Time | Memory | 代码长度 | 提交时间 |
---|---|---|---|---|---|---|---|---|
4511 | HUMPAomg | A+B 输入输出练习III | C++ | Accepted | 0 MS | 268 KB | 240 | 2024-08-20 21:43:53 |
#include <bits/stdc++.h> using namespace std; long long c,a1,a2,s,t,n,a,b; double d; int main(){ int n=1e9; for(int i=1;i<=n;i++){ cin>>a>>b; if(a==0 and b==0){ break; }else{ cout<<a+b<<endl; } } return 0; }