#include using namespace std; typedef long long ll; typedef long double ld; int main(void) { int X,Y,N,A,B; cin >> X >> Y >> N; cin >> A; bool up = true; for (int i=1; i> A; if (B*Y < A*X) up = false; } cout << (up ? "YES" : "NO") << endl; return 0; }