#include #include #include #include #include #include #include #include #include #include #include #include #include #define debug_value(x) cerr << "line" << __LINE__ << ":<" << __func__ << ">:" << #x << "=" << x << endl; #define debug(x) cerr << "line" << __LINE__ << ":<" << __func__ << ">:" << x << endl; template inline bool chmax(T& a, T b) { if (a < b) { a = b; return 1; } return 0; } template inline bool chmin(T& a, T b) { if (a > b) { a = b; return 1; } return 0; } using namespace std; typedef long long ll; template vector> vec2d(int n, int m, T v){ return vector>(n, vector(m, v)); } template vector>> vec3d(int n, int m, int k, T v){ return vector>>(n, vector>(m, vector(k, v))); } template void print_vector(vector v, char delimiter=' '){ if(v.empty()) { cout << endl; return; } for(int i = 0; i+1 < v.size(); i++) cout << v[i] << delimiter; cout << v.back() << endl; } // calc ceil(a/b) template T ceil_div(T a, T b){ return (a+b-1)/b; } const ll inf = 1e18; int main(){ ios::sync_with_stdio(false); cin.tie(0); cout << setprecision(10) << fixed; ll h, w, la, lb, ka, kb; cin >> h >> w >> la >> lb >> ka >> kb; ll ans = inf; ll p = h*w+la*lb; auto ok = [&](ll x, ll y){ ll rem_h = max(0ll, h-x*la); ll rem_w = max(0ll, w-y*lb); ll rem = rem_h*w+rem_w*h-rem_h*rem_w; return x*ka+y*kb >= rem; }; ll y = h+w; for(ll x = 0; x <= h+w; x++){ while(y > 0 && ok(x, y)) y--; if(ok(x, y)){ chmin(ans, x+y); }else{ chmin(ans, x+y+1); } } cout << ans << endl; }