h,w,n,k= map(int, input().split())

m = h * w
mt = m % n
mt = n if mt == 0 else mt
if mt - k == 0:
    print('YES')
else:
    print('NO')