Run ID | 作者 | 问题 | 语言 | 测评结果 | Time | Memory | 代码长度 | 提交时间 |
---|---|---|---|---|---|---|---|---|
4451 | 李宇轩 | A+B 输入输出练习III | C++ | Accepted | 1 MS | 264 KB | 186 | 2024-08-18 17:17:38 |
#include <iostream> using namespace std; int main(){ int m,n; while(cin>>m>>n){ if(m==0&&n==0) break; cout<<m+n<<endl; } return 0; }