#include <iostream> #include <string> using namespace std; int main() { string str; cin>>str; for(int i=0;i<str.size();i++){ for(int j=i+1;j<str.size();j++){ if(str[i]>str[j]){ char temp=str[i]; str[i]=str[j]; str[j]=temp; } } } cout<<str; } // 64 位输出请用 printf("%lld")