#include using namespace std; int main() { long double a, b, c, d; cin >> a >> b >> c >> d; if (a / b < c / d) cout << "Yes" << endl; else cout << "No" << endl; return 0; }