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