package main import ( "fmt" "math" ) func main() { var K, S int fmt.Scan(&K, &S) fmt.Println(int(math.Trunc(float64(S) / float64(100-K) * 100))) }