#coding: utf-8 ##yuki_166 h,w,n,k=map(int,raw_input().split()) b=h*w if b>n: b-=((b-1)/n)*n if b==k: print "YES" else: print "NO"