let sum = get_sum(5, 3);//sum is 8println!("sum is {sum}");fn get_sum(n1: i32, n2: i32) -> i32 { n1 + n2}