N, M = map(int, input().split())
if N == M:
    print(0)
else:
    print(M - N if M - N < 0 else "+" + str(M - N))