#include using namespace std; int main(){ long long L, R, M, K; cin >> L >> R >> M >> K; if ((L * K + M - 1) / M < (R * K + M) / M){ cout << "Yes" << endl; } else { cout << "No" << endl; } }