a, b = input().split() if '+' in a + b or '-' in a + b: print(eval(a + b)) else: print(int(a + b))