l,r,m,k = map(int,input().split()) kl,kr = k * l, k * r def f(n): return (n // m) * m if f(kl - 1) == f(kr): print('No') else: print('Yes')