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