def need(a,b); (a + (b - 1)) / b; end a,b,c = 3.times.map{ gets.to_i } puts 3 * need(a,c) <= 2 * need(a,b) ? :YES : :NO