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