a = gets.to_f b = gets.to_i c = gets.to_i normal = (a / b).ceil special = (a / c).ceil if special <= normal * 1.0 * 2 / 3 puts "YES" else puts "NO" end