h,w,n,k = gets.chomp.split(" ").map(&:to_i) if (h * w - 1) % n == k - 1 print "YES" else print "NO" end