let a = stdin.ReadLine () |> int let b = stdin.ReadLine () |> int let c = stdin.ReadLine () |> int if (a+b-1)/b * 2 / 3 >= (a+c-1)/c then "YES" else "NO" |> printfn "%s"