H,W,N,K = map(long,raw_input().split(' '))
S = H*W
m = S % N
if m == 0:
	m = N
if m == K:
	print 'YES'
else:
	print 'NO'