fn main() {
    let mut s1 = String::from("Hello");
    let s2 = " World";
    s1.push_str(s2); // اضافه کردن s2 به s1
    println!("{}", s1);
}