a, b = input().split() if b[0] == '+': print(a + b) else: print(int(a) + int(b))