using System; using System.Collections.Generic; using System.Linq; using System.Text; using System.Threading.Tasks; namespace foryuki { class Program { static void Main(string[] args) { double a = int.Parse(Console.ReadLine()); double b = int.Parse(Console.ReadLine()); double c = int.Parse(Console.ReadLine()); double need1 = Math.Ceiling(a / b); double need2 = Math.Ceiling(a / c); if (need1 * (2d / 3d) >= need2) { Console.WriteLine("YES"); } else { Console.WriteLine("NO"); } } //------------------------------------------------------------- static int[] ConvertStringArrayToIntArray(string[] str) { int[] b = Array.ConvertAll(str, delegate(string value) { return int.Parse(value); }); return b; } static List ConvertStringArrayToIntList(string[] str) { var list = new List(); foreach (var c in str) { list.Add(int.Parse(c)); } return list; } } }