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