#include using namespace std; typedef long long ll; typedef pair P; #define REP(i,n) for(ll i=0;i> A >> B >> C >> D; ll P,Q,R,S,T; cin >> P >> Q >> R >> S >> T; if(A*P+B*Q+C*R+D*S<=T) cout << "Yes" << endl; else cout << "No" << endl; return 0; }