a,b = map(int,input().split()) if a < b: print("+",b-a,sep="") else: print(b-a)