H, W, N, K = list(map(int, input().split())) print('YES' if (H * W) % (N + 1) == K else 'NO')