#include <stdio.h>
#include <algorithm>
#include <string.h>
using namespace std;
int main()
{
char s[201];
while(gets(s))
{
int t = strlen(s);
sort(s,s+t);
puts(s);
// printf("\n");
}
return 0;
}
#include <stdio.h>
#include <algorithm>
#include <string.h>
using namespace std;
int main()
{
char s[201];
while(gets(s))
{
int t = strlen(s);
sort(s,s+t);
puts(s);
// printf("\n");
}
return 0;
}