while True:
    try:
        strs = input()
        if 1 <= len(strs) <= 1000:
            List = sorted(strs)    # sorted函数,默认就是按ASSIC码进行排序的,只不过会转换成列表
            print("".join(List))    #利用join函数把列表转换成新的字符串
    except:
        break