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 parsent = s / k; System.out.println(String.format("%.0f", (parsent * 100))); } }