#include using namespace std; int main(){ int A,B,C,D,S; cin>>A>>B>>C>>D>>S; if(A * C + B * D <= S){ cout << "Yes" << "\n"; } else{ cout << "No" << "\n"; } }