a,b=input().split()
if(a=='0' or a=='-0'):
    print(b)
    exit()
s=a+b
print(str(int(eval(s))))