package main import ( "fmt" "math" ) func main() { var a float64 fmt.Scan(&a) V := (15 + 5*math.Sqrt(5)) / 12 * math.Pow(a, 3) fmt.Println(V) }