h, w, n, k = map(int, input().split()) x = h * w y = x // n z = x - y*k if z//k == 0: print('YES') else: print('NO')