l, r, m, k = map(int,input().split()) if r*k-l*k >= m: print('Yes') else: print('No')