Contact: aviboots(AT)netvision.net.il
40,848 questions
53,253 answers
573 users
fn main() { let number = 83729301; let result = number.to_string() .as_bytes() .rchunks(3) .rev() .map(std::str::from_utf8) .collect::<Result<Vec<&str>, _>>() .unwrap() .join(","); println!("{}", result); } /* run: 83,729,301 */