h,w,n,k=STDIN.gets.split(" ") s=h.to_i*w.to_i n=n.to_i k=k.to_i if ((s-1)%n+1)==k puts "YES" else puts "NO" end