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