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