import java.util.Scanner; public class DislikeVegetables { public static void main(String args[]) { Scanner scan = new Scanner(System.in); // Vegetable の個数 int a = scan.nextInt(); // Meat の個数 int b = scan.nextInt(); // 一つVegetable を消費するのに必要な倍数 int c = scan.nextInt(); // 消費できるMaxの量 int d = scan.nextInt(); // 終了条件 // 消費できる量はまだあるが、Vegetableがもうない // 消費できる量はまだあるが、Meatがもうない // Vegetable、Meatはまだあるが、消費できるMaxを超えている for(int i = a; i < 0; i--) { // 仮の消費量 int eatNum = i * c; // 消費量が、BよりもDよりも少ない if((eatNum <= b) && (eatNum <= d)) { System.out.println(i); } } System.out.println(0); return; } }