#include #define exrep(i, a, b) for(long long i = a; i <= b; i++) #define rep(i,n)for(long long i=0;i<(long long)(n);i++) #define all(a) a.begin(), a.end() #define rall(a) a.rbegin(), a.rend() using namespace std; typedef unsigned long long ull; typedef long long ll; typedef long double ld; typedef pair P; typedef vector vl; typedef vector vs; typedef vector

vp; typedef vector > vvl; typedef vector > vvp; template inline bool chmax(T& a, T b) { if (a < b) { a = b; return true; } return false; } template inline bool chmin(T& a, T b) { if (a > b) { a = b; return true; } return false; } const ll MOD=1e9+7; const ll INF=1e18; const int MAX=510000; const double pi=acos(-1); int dx[4]={1,0,-1,0}; int dy[4]={0,1,0,-1}; int main(){ cin.tie(0); ios::sync_with_stdio(false); int a,b,c,d; cin >> a >> b >> c >> d; int ans=0; for(int x=0;x<=a;x++){ if(c*x<=b && (c+1)*x<=d)ans=x; } cout << ans << endl; return 0; }