# No.166 マス埋めゲーム H, W, N, K = [int(i) for i in input().split()] print('YES' if (H * W - K) % N == 0 else 'NO')