H, W, N, K = map(int, input().split()) ko = H*W ko %= N if not ko: ko += N if ko == K: print("YES") else: print("NO")