1
2
3
4
5
pub mod sum{
    pub fn add(input1:i32,input2:i32)->i32{
        input1+input2
    }
}