#include <iostream>
#include <set>
using namespace std;
int main(){
string str;
cin>>str;
multiset<char> res;
for(auto &ch: str){
res.insert(ch);
}
for(auto &ch: res){
cout<<ch;
}
cout<<endl;
return 0;
}

京公网安备 11010502036488号