#include <cstdio>
#include <string>
#include <algorithm>
using namespace std;
int main(){
char str1[20];
while (scanf("%s",&str1)!= EOF) {
string str2=str1;
int j=str2.length();
sort(str1,str1+j);
printf("%s",str1);
}
}

京公网安备 11010502036488号