h, w, n, k = map(int, input().split()) total = h * w if (total - 1) % n + 1 == k: print("YES") else: print("NO")