import sys

a,b = input().split()
a, b = map( int, [a,b])
 
print (a+b)