def lscan; gets.split.map(&:to_i); end n,k,t = lscan puts (n.abs + k - 1)/k <= t ? 'Yes' : 'No'