Contact: aviboots(AT)netvision.net.il
39,987 questions
51,931 answers
573 users
fn main() { let mut n: i32 = 12345; n = n.abs().to_string().chars().rev().collect::<String>().parse::<i32>().unwrap(); println!("{}", n); } /* run: 54321 */