#include<string>
#include<set>
using namespace std;
int main()
{
string str;
while(cin>>str)
{
multiset<char> s;
for(auto x:str)
{
s.insert(x);
}
for(auto x:s)
{
cout<<x;
}
cout<<endl;
}
}

京公网安备 11010502036488号