Run ID 作者 问题 语言 测评结果 Time Memory 代码长度 提交时间
114854 桂敬然 A+B 输入输出练习IV Python3 Accepted 43 MS 3764 KB 143 2025-03-23 19:25:49

Tests(1/1):


Code:

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