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