A,B = map(int,input().split()) C = B-A if B-A > 0: print("+"+str(C)) elif B-A < 0: print(B-A) else: print(0)