# 将输入的字符串转换成列表list1
list1 = list(input())
# 列表list1使用sort()方法进行永久排序
list1.sort(key=None, reverse=False)
# 用‘’将列表中的元素连接起来
print(''.join(list1))