#include<iostream>
using namespace std;
long L,R,M,K;
main()
{
	cin>>L>>R>>M>>K;
	L*=K;
	R*=K;
	R=R/M*M;
	cout<<(L<=R?"Yes":"No")<<endl;
}