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