N=list(input()) N.sort(reverse=True) import copy ANS=copy.deepcopy(N) ANS[-1],ANS[-2]=ANS[-2],ANS[-1] if ANS==N: print(-1) elif ANS[0]=="0": print(-1) else: print("".join(ANS))