while 1:
    try:
        s = input()
        l = sorted([i for i in s])
        print("".join(l))
    except:
        break