a,b=map(int,input().split());print("+",b-a,sep="") if b-a>0 else print(0) if b-a==0 else print(b-a)