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