Run ID:135062
提交时间:2025-11-02 13:54:20
a = 1 b = 1 summ = [] while a != 0 and b != 0: a, b = eval(input()) summ.append(a + b) for i in summ: print(i)