H, W, N, K = map(int, raw_input().split()) spaces = H * W print "YES" if (spaces-K) % N == 0 else "NO"