G.py 85 B

1234
  1. while True:
  2. A = list(map(int, input().strip().split()))
  3. print(sum(A[1:]))