while True:
    try:
        a = input()
        b = sorted(a)
        print(''.join(b))
    except:
        break