a, b = map(int, input().split()) if a < b: print(f'+{b-a}') elif a > b: print(f'{b-a}') else: print(b - a)