import java.util.*; public class Main { public static void main(String[] args) { Scanner scan = new Scanner(System.in); double k = scan.nextInt(); double s = scan.nextInt(); double now = 100 - k; double parsent = s / now; System.out.println(Math.floor((parsent * 100))); } }