fn main() {
let mut greeting = String::from("Hello");
greeting.push_str(" World");
println!("{}", greeting);
}