a, b = (int(i) for i in input().strip().split(' ')) t = '' if a > b: t = '-' elif a < b: t = '+' t += str(abs(a - b)) print(t)