1
2
3
4
5
pub fn fun_print(start : i32,end : i32){
    for index in start..end{
        println!("count:{}",index);
    }
}