#!/usr/bin/env python #coding:utf8 def read(): return map(int, raw_input().split()) def work((H, W, N, K)): print "YES" if H * W % N == K % N else "NO" if __name__ == "__main__": work(read())