L,R,M,K = map(int,input().split()) LL = L * K RR = R * K if LL % M == 0 or RR % M == 0 or RR // M != LL // M: print ("Yes") else: print ("No")