E.cpp 188 B

12345678910111213
  1. #include <bits/stdc++.h>
  2. using namespace std;
  3. int main() {
  4. string s;
  5. while (getline(cin, s)) {
  6. sort(s.begin(), s.end());
  7. cout << s << endl;
  8. }
  9. return 0;
  10. }