lina_os

Untitled

Nov 22nd, 2024
37
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.20 KB | None | 0 0
  1. #include <iostream>
  2. #include <algorithm>
  3.  
  4. using namespace std;
  5. int main() {
  6. int n;
  7. cin >> n;
  8. string s;
  9. cin >> s;
  10. sort(s.begin(), s.end());
  11. cout << s;
  12. return 0;
  13. }
Advertisement
Add Comment
Please, Sign In to add comment