import kotlin.math.abs fun main() { var (n, k, t) = readLine()!!.split(" ").map{it.toInt()} println(if((abs(n)+k-1)/k > t) "No" else "Yes") }