# coding:utf-8 H, W, N, K = map(int, input().split()) if H * W // N == K: print('NO') else: print('YES')