package main import ( "bufio" "fmt" "os" "strconv" ) func main() { K := nextInt() S := nextInt() ans := 100 * S / (100 - K) fmt.Println(ans) } var sc = bufio.NewScanner(os.Stdin) func next() string { sc.Split(bufio.ScanWords) sc.Scan() return sc.Text() } func nextInt() int { i, e := strconv.Atoi(next()) if e != nil { panic(e) } return i }