string=input()
res=[]
for i in string:
    res.append(ord(i))
res=sorted(res)
print(''.join(chr(i) for i in res))