H, W, N, K = gets.split.map(&:to_i) if (H * W % N).zero? && N == K || H * W % N == K puts 'YES' else puts 'NO' end