#!/usr/bin/python3 a, b = map(int, input().split()) dif = b - a op = '' if dif > 0: op = '+' elif dif < 0: op = '-' res = '{}{}'.format(op, abs(dif)) print(res)