module main; import std; void main() { // 入力 int K = readln.chomp.to!int; int S = readln.chomp.to!int; // 答えの計算と出力 writeln(S * 100 / (100 - K)); }