#include<bits/stdc++.h>
using namespace std;
string str;
void solve(){
cin>>str;
sort(str.begin(),str.end());
cout<<str;
}
int main(){
ios::sync_with_stdio(false);
cin.tie(nullptr);
cout.tie(nullptr);
solve();
return 0;
}