use std; mod cow; fn main() { let args: Vec = std::env::args().collect(); let c = cow::Cow::new(args[1..].join(" ")); println!("{}", c) }