Run ID:114854

提交时间:2025-03-23 19:25:49

while True: ls = list(map(int,input().split(' '))) if ls == [0]: break else: del ls[0] print(sum(ls))