a, b = input().split()
if a == "0" or a == "-0":
    print(b)
else:
    print(eval(f"{a+b}"))