//冒泡排序?
#include <stdio.h>
#include <string.h>

main ()
{
    char c[200],t;
    while(scanf("%s",&c)!=EOF)
    {
        for(int i=0;i<strlen(c)-1;i++)
        {
            for(int j=0;j<strlen(c)-1-i;j++)
            {
                if(c[j]>c[j+1])
                {
                    t=c[j];
                    c[j]=c[j+1];
                    c[j+1]=t;
                }
            }
        }
        printf("%s",c);
    }
    return 0;
}