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