# Here your code ! a,b = map(int,input().split()) if a == b: ans = 0 elif a < b: ans = "+"+str(b-a) else: ans = "-"+str(a-b) print(ans)