A, B = input().split(" ") if A == "0" or A == "-0": print(int(A)+int(B)) elif int(B) < 0: print(int(A)+int(B)) else: print(A+B)