a,b = map(int,input().split()) ans = abs(a-b) if a == b : print(0) elif a > b : print("-{}".format(ans)) else : print("+{}".format(ans))