package main import ( "fmt" ) func main() { var v float64 var t int fmt.Scan(&v, &t) V := int(v*10000+0.5) fmt.Println(V*t/10000) }