#include using namespace std; void solve(){ int a, b, c, d, s; cin >> a >> b >> c >> d >> s; if(a * c + b * d <= s){ cout << "Yes" << endl; return; } else{ cout << "No" << endl; return; } } int main(){ solve(); return 0; }