a = gets.to_i b = gets.to_i c = gets.to_i normal = (a - 1) / b + 1 capane = (a - 1) / c + 1 if normal * 2 >= capane * 3 puts "YES" else puts "NO" end