package main import ( "fmt" ) func main(){ var d, p float64 fmt.Scan(&d, &p) tax := d * (p / 100) fmt.Println(int(d + tax)) }