if name == 'main':
while True:
try:
s = raw_input()
list = sorted(s)
strs = ''
for i in range(len(list)):
strs= strs+list[i]
print strs
except:
break