fork download
  1. #include <iostream>
  2. #include <string>
  3. #include <algorithm>
  4.  
  5. using namespace std;
  6.  
  7. int main() {
  8. string N;
  9. cin >> N;
  10.  
  11. sort(N.begin(), N.end(), greater<char>());
  12.  
  13. cout << N << '\n';
  14.  
  15. return 0;
  16. }
  17.  
Success #stdin #stdout 0.01s 5284KB
stdin
asdf
stdout
sfda