a = gets.to_f b = gets.to_f c = gets.to_f puts Rational((a/b).ceil * 2, 3) >= (a/c).ceil ? 'YES' : 'NO'