a = gets.to_i b = gets.to_i c = gets.to_i ans = if 3 * ((a + c - 1) / c) <= 2 * ((a + b - 1) / b) "YES" else "NO" end puts ans