a, b = map(int, input().split()) ans = b - a if ans > 0: print(f"+{ans}") else: print(ans)