import java.util.Scanner; public class No169 { public static void main(String[] args) { int k, s; Scanner sc = new Scanner(System.in); k = sc.nextInt(); s = sc.nextInt(); sc.close(); System.out.println(s * 100 / (100 - k)); } }