1
2
3
pub fn exponent_function(x:f64,y:f64){
    println!("{}",x.powf(y));
}