#include using namespace std; using ll = long long; #define rep(i, n) for (int i = 0; i < (int)(n); i++) int main() { cin.tie(nullptr); ios_base::sync_with_stdio(false); int a, b, c, d, s; cin >> a >> b >> c >> d >> s; cout << (a * c + b * d <= s ? "Yes" : "No") << endl; return 0; }