from sys import stdin def main(): input = lambda: stdin.readline()[:-1] A, B = input().split() if A == '0': A = '' print(eval(A + B)) main()