# -*- coding: utf-8 -*- H,W,N,K = map(int, input().split()) yes = 'YES' no = 'NO' last = H+W-1 r = last % N if r == K or (r==0 and K==N): print(yes) else: print(no)