package main import ( "fmt" "math" ) func main() { x := 4.0 y := math.Sqrt(x) fmt.Printf("Square root of %.2f is %.2f\n", x, y) }