using namespace std; int main(){ int v1,v2,s1,s2,t1,t2; cin>>s1>>t1>>s2>>t2; v1=s1/t1; v2=s2/t2; if(v1 > v2) cout<<"YES"; else cout<<"NO"; }