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