l,r,m,k = map(int,input().split()) if r*k//m != l*k//m: print("Yes") elif l*k%m == 0 or r*k%m == 0: print("Yes") else: print("No")