def main(): H, W, N, K = map(int, input().split()) if (H * W) % N == K % N: print("YES") else: print("NO") if __name__ == "__main__": main()