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