using System; using System.Collections.Generic; using System.Linq; using System.Text; using System.Threading.Tasks; namespace ConsoleApp103 { class Program { static void Main(string[] args) { string[] str = Console.ReadLine().Split(); int a = int.Parse(str[0]); int b = int.Parse(str[1]); int c = int.Parse(str[2]); int d = int.Parse(str[3]); int bai = 0; for(int i = 0; i < 100; i++) { if ((c + 1) * i <= d && i <= a && i * c <= b) { bai = i; } else { break; } } Console.WriteLine(bai); Console.ReadLine(); } } }