inf = open('sum.in', 'r')
ouf = open('sum.out', 'w')

a, b = inf.readline().split()
print(int(a) + int(b), file=ouf)