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