#! ruby # yukicoder My Practice # author: Leonardone @ NEETSDKASU a, b, c = $<.map(&:to_f) x = (a / b).ceil y = (a / c).ceil if 2 * x >= 3 * y puts 'YES' else puts 'NO' end