while True:
    try:
        s = input()
        l = sorted(s)
        print(''.join(l))
    except:
        break