package main import ( "fmt" "math" ) func main() { x := 16.0 y := 2.0 fmt.Println("جذر:", math.Sqrt(x)) fmt.Println("توان:", math.Pow(x, y)) }