l,r,m,k = list(map(int, input().split())) #print((l*k-1)//m, (r*k)//m) if(l!=0 and (l*k-1)//m >= (r*k)//m): print("No") else: print("Yes")