1
2
3
4
5
6
7
pub mod grandsection{
        pub mod section1{
                pub fn calculate(input1: u32, input2: u32) -> u32{
                        input1*100/input2
                }
        }
}