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