from sys import stdin
def sum(a,b):
    return a+b

x=stdin.readline()
xs=x.split(' ')
print sum(int(xs[0]),int(xs[1]))