Run ID 作者 问题 语言 测评结果 Time Memory 代码长度 提交时间
73043 Kevin A+B 输入输出练习III C++ Accepted 3 MS 272 KB 170 2024-05-16 15:56:24

Tests(1/1):


Code:

#include<iostream> #include<cstdio> using namespace std; int main(){ int a,b; cin>>a>>b; while(a!=0&&b!=0){ cout<<a+b<<endl; cin>>a>>b; } return 0; }