A, B, C = 3.times.map { gets.to_i } a = (A + B - 1) / B * 2 / 3 b = (A + C - 1) / C if a < b puts "NO" else puts "YES" end