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