h,w,n,k=map(int,input().split()) are=h*w kt=are%n if are>=k: if are==k: print("YES") else: print("NO") else: if kt==k: print("YES") else: print("NO")