import java.util.Scanner; public class No56 { public static void main(String[] args) { Scanner sc = new Scanner(System.in); double D = sc.nextInt(); double P = sc.nextInt(); System.out.println((int)(Math.floor(D * (P / 100 + 1)))); } }