a, b = map(int, input().split()) s = b - a print(s if s <= 0 else "+" + str(s))