h,w,n,k = map(int, input().split()) g = h*w a = g%n if a == 0: print('YES') if n == k else print('NO') else: print('YES') if a == k else print('NO')