H, W, N, K =map(int, input().split()) out_n = (H + W - 1) % N while out_n > 0: if out_n - K == 0: print("YES") break out_n -= N else: print("NO")