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