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