a, b = [int(x) for x in input().split()] s = b - a if s > 0: print(f'+{s}') else: print(s)