let R() = stdin.ReadLine() |> float let (A,B,C) = R(),R(),R() let a = (A/B) * (2./3.) let b = float(int(A/C)) if a <= b then "YES" else "NO" |> printfn "%s"