Run ID:142836
提交时间:2026-01-11 16:22:54
#include <iostream> int main() { int a, b; while (cin >> a >> b) { cout << a + b << endl; } return 0; }