解题思路:
sort();
use std::io::{self, *};
fn main() {
let stdin = io::stdin();
for line in stdin.lock().lines() {
let mut phot = line.unwrap().into_bytes();
phot.sort();
println!("{}",String::from_utf8(phot).unwrap());
}
}