#54170: python不用map


1120328@kmhjh.kh.edu.tw (1120328 s)


a = input() # 2 3
a = a.split(' ') # ['2', '3']
a = int(a[0])+int(a[1])
print(a)