Run ID:152755

提交时间:2026-05-02 10:20:23

#include<bits/stdc++.h> using namespace std; int main() { while True: a, b = map(int, input().split()) if a == 0 and b == 0: break print(a + b) return 0; }