#include <bits/stdc++.h> // #include <atcoder/all> using namespace std; // using namespace atcoder; #define rep(i, a, n) for(ll i = a; i < n; i++) #define rrep(i, a, n) for(int i = a; i >= n; i--) #define inr(l, x, r) (l <= x && x < r) #define ll long long #define ld long double // using mint = modint1000000007; // using mint = modint998244353; constexpr int IINF = 1001001001; constexpr ll INF = 1e18; template<class t,class u> void chmax(t&a,u b){if(a<b)a=b;} template<class t,class u> void chmin(t&a,u b){if(b<a)a=b;} int main(){ vector<ll> a(4); rep(i, 0, 4) cin >> a[i]; ll n; cin >> n; vector<ll> t(4); rep(i, 0, 4) cin >> t[i]; ll T; cin >> T; rep(x1, 0, a[0]+1){ if(x1*t[0] > T || x1 > n) break; rep(x2, 0, a[1]+1){ if(x1*t[0]+x2*t[1] > T || x1+x2 > n) break; if(x1*t[0]+x2*t[1] > T) break; ll rest = T-x1*t[0]-x2*t[1]; ll rp = n-x1-x2; // cout << x1 << ' ' << x2 << endl; // x2*t[2]+x3*t[3] <= rest; if(t[2]-t[3] == 0){ if(t[3]*rp > rest) continue; ll x3 = 0; // cout << "###" << x1 << ' ' << x2 << ' ' << x3 << endl; if(inr(0, n-x1-x2-x3, a[3]+1)){ cout << x1 << ' ' << x2 << ' ' << x3 << ' ' << n-x1-x2-x3 << endl; return 0; } x3 = a[2]; if(inr(0, n-x1-x2-x3, a[3]+1)){ cout << x1 << ' ' << x2 << ' ' << x3 << ' ' << n-x1-x2-x3 << endl; return 0; } }else if(t[2]-t[3] > 0){ if(t[3]*rp > rest) continue; ll mx = (rest-t[3]*rp)/(t[2]-t[3]); ll x3 = 0; if(inr(0, n-x1-x2-x3, a[3]+1)){ cout << x1 << ' ' << x2 << ' ' << x3 << ' ' << n-x1-x2-x3 << endl; return 0; } x3 = min(a[2], mx); if(inr(0, n-x1-x2-x3, a[3]+1)){ cout << x1 << ' ' << x2 << ' ' << x3 << ' ' << n-x1-x2-x3 << endl; return 0; } }else{ if(t[3]*rp < rest) continue; ll mi = (t[3]*rp-rest)/(t[3]-t[2]); if(mi > a[2]) continue; ll x3 = mi; // cout << "###" << x1 << ' ' << x2 << ' ' << x3 << ' ' << n-x1-x2-x3 << endl; if(inr(0, n-x1-x2-x3, a[3]+1)){ cout << x1 << ' ' << x2 << ' ' << x3 << ' ' << n-x1-x2-x3 << endl; return 0; } x3 = max(mi, a[2]); // cout << "###" << x1 << ' ' << x2 << ' ' << x3 << ' ' << n-x1-x2-x3 << endl; if(inr(0, n-x1-x2-x3, a[3]+1)){ cout << x1 << ' ' << x2 << ' ' << x3 << ' ' << n-x1-x2-x3 << endl; return 0; } } } } return 0; }