A, B = input().split() if B[0] == "+": print(int(A)+int(B[1:])) elif B[0] == "-": print(int(A)-int(B[1:])) else: print(int(A+B))