public class No_169 { public static void main(String[] args) { java.util.Scanner sc = new java.util.Scanner(System.in); int K = sc.nextInt(); int S = sc.nextInt(); int x = (K * S) / (100 - K); System.out.println(S + x); } }