A,B = map(str,input().split()) if "-" in A or "-" in B: print(int(A)+int(B)) exit() print(int(A+B))