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