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