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