H,W,N,K = map(int,input().split())
if N == 1 or (H + W - 1) % N == K:
	print('YES')
else:
	print('NO')