package main import "fmt" func main() { var d, p int fmt.Scanf("%d%d", &d, &p) var res int = int(d * (100 + p) / 100.) fmt.Printf("%d\n", res) }