using System; using System.Linq; class Program { static void Main() { double[] pq = Console.ReadLine().Split(' ').Select(double.Parse).ToArray(); Console.WriteLine(pq[1] < 2 - 1 / pq[0] ?"YES" : "NO"); } }