package main import ( "fmt" "math" ) func main() { a := 81.0 fmt.Printf("the total a^2 will be: %f\n", math.Sqrt(a)) }