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