题解 | #图片整理#
图片整理
http://www.nowcoder.com/practice/2de4127fda5e46858aa85d254af43941
无脑调用标准库
#include<iostream>
#include<string>
#include<algorithm>
int main()
{
std::string stmp;
std::cin >> stmp;
std::sort(stmp.begin(), stmp.end());
std::cout << stmp;
}