import sys; input = sys.stdin.buffer.readline sys.setrecursionlimit(10**7) from collections import defaultdict con = 10 ** 9 + 7; INF = float("inf") def getlist(): return list(map(int, input().split())) #処理内容 def main(): L, R, M, K = getlist() if (K * L) % M == 0: print("Yes") elif int(K * R // M) - int(K * L // M) >= 1: print("Yes") else: print("No") if __name__ == '__main__': main()