1
2
3
4
5
6
7
pub fn table(input:u32){

    for i in 1..11{

        println!("{} * {} = {}", input, i, input*i);
    }
}