while 1:
    try:
        ss=input()
        res=sorted(ss,key=ord)
        print("".join(res))
    except:
        break