# frozen_string_literal: true a = gets.chomp.to_i b = gets.chomp.to_i c = gets.chomp.to_i if 3 * Rational(a, c).ceil <= 2 * Rational(a, b).ceil puts 'YES' else puts 'NO' end