package main import "fmt" func main() { var d,p float32 fmt.Scan(&d,&p) var ans int = int(d * (p / 100.0 + 1.0)) fmt.Println(ans) }