h,w,n,k=list(map(int,input().split())) t=h*w-n*((h*w)//n) if (t==0 and n==k) or t==k: print("YES") else: print("NO")