Run ID 作者 问题 语言 测评结果 Time Memory 代码长度 提交时间
132372 王斌 A+B 输入输出练习I C++ Accepted 5 MS 264 KB 252 2025-10-08 09:35:15

Tests(1/1):


Code:

#include <iostream> using namespace std; int main() { int a, b; // 持续读取输入,直到没有更多输入 while (cin >> a >> b) { // 计算并输出两数之和 cout << a + b << endl; } return 0; }