import sys

line= sys.stdin.readline()
line_list=list(line)
line_list.remove("\n")
line_list.sort()
print("".join(line_list))

#非常简单的编程题