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