0
1
mirror of https://git.sb/baoshuo/OI-codes.git synced 2024-11-10 10:38:50 +00:00
OI-codes/AtCoder/ABC242/B/B.cpp

18 lines
273 B
C++

#include <algorithm>
#include <iostream>
#include <string>
using std::cin;
using std::cout;
const char endl = '\n';
std::string s;
int main() {
std::ios::sync_with_stdio(false);
cin >> s;
std::sort(s.begin(), s.end());
cout << s << endl;
return 0;
}