#coding=UTF-8 N=input()#今回は文字列 hyo=sorted(N,reverse=True)#リストが返って来る ans='' for idx in range(0,len(hyo),1): ans=ans+hyo[idx]#文字列の結合 print(ans)