def getlist(): return list(map(int, input().split())) a, b = getlist() if b > a: print("+" + str(b - a)) else: print(b - a)