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