n = input() t =sorted(n) # t是一个列表 o = '' for i in t: o = o+str(i) print(o)