google valuation

package main

import (
    "fmt"
)

func main() {
    const numberOfShares = 3230000000
    const sharePrice = 2895.92

    totalValuation := numberOfShares * sharePrice
    fmt.Printf("Google's valuation: $%.2f\n", totalValuation)
}