import sys for line in sys.stdin.readlines(): if len(line) == 2: break value = list(map(int, line.split()))[1:] print(sum(value))
暂无评论,快来抢首评~
相关推荐