#35004: python AC


1554101-0@g.puiching.edu.mo (P6A29_1300題了)

學校 : 澳門培正中學
編號 : 216811
來源 : [60.246.150.90]
最後登入時間 :
2024-10-10 18:56:38

while True:
    try:
        a = list(map(int,input().strip().split()))
        add = 0
        for num in a:
            add+=num
        print(add)
    except:
        break

#38630: Re: python AC


wu6335 (sheng hsien)

學校 : 不指定學校
編號 : 254104
來源 : [61.222.31.187]
最後登入時間 :
2025-03-31 15:50:20

while True:
    try:
        a = list(map(int,input().strip().split()))
        add = 0
        for num in a:
            add+=num
        print(add)
    except:
        break

 

while True:
  try:
    x=[int(i) for i in input().split()]
    print(sum(x))
  except:break