a, b = input().split() if int(b) >= 0: print(int(a+b)) else: print(int(a)+int(b))