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