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