package main import ( "fmt" "math" ) func main() { var v, t float64 fmt.Scan(&v, &t) fmt.Println(math.Trunc(v*10000*t/10000)) }