#35004: python AC


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


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)


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