#include using namespace std; int main(void) { cin.tie(0); ios::sync_with_stdio(false); int a,b,c,d,p,q,r,s,t; cin >> a >> b >> c >> d; cin >> p >> q >> r >> s >> t; t-=(a*p); t-=(b*q); t-=(c*r); t-=(d*s); if(t < 0) cout << "No" << '\n'; else cout << "Yes" << '\n'; return 0; }