fn main() { let mut xx = String::new(); std::io::Read::read_to_string(&mut std::io::stdin(), &mut xx).ok(); let xx: Vec = xx.split_whitespace().flat_map(str::parse).collect(); println!( "{}", xx[2..] .iter() .map(|n| (n + xx[1]).to_string()) .collect::>() .join(" ") ); }