a , b = map(int, input().split()) odd = b - a if odd == 0: print(0) elif odd > 0: print('+' + str(odd)) else: print(str(odd))