a, b = [int(i) for i in input().strip().split(' ')] print(('+' if b > a else '-' if b < a else '') + str(abs(b - a)))