package main import ( "fmt" "math" ) func main() { var d, p float64 fmt.Scan(&d, &p) fmt.Println(int64(math.Floor(d + (d * p / 100)))) }