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