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