# coding: utf-8 # Here your code ! x,y=[int(i) for i in input().split()] if x >= y: print(y-x) elif x < y: a = y-x print("+", end="") print(a)