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