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