#include #include #include using namespace std; int main(){ string s; cin >> s; stable_sort(s.rbegin(),s.rend()); cout << s << endl; }