#coding:utf-8 H,W,N,K=map(int,raw_input().split()) all=H*W ans=all%N if ans==K or (ans==0 and N==K): print 'YES' else: print 'NO'