#include<iostream> #include<string> #include<algorithm> using namespace std; int main(){ string before; cin>>before; sort(before.begin(), before.end()); cout<<before; return 0; }
#include<iostream> #include<string> #include<algorithm> using namespace std; int main(){ string before; cin>>before; sort(before.begin(), before.end()); cout<<before; return 0; }