a = gets.to_i b = gets.to_i c = gets.to_i bn = (a.to_f / b).ceil cn = (a.to_f / c).ceil if cn * 1.5 <= bn puts "YES" else puts "NO" end