main = do [a,b,c] <- getContents >>= return . map read . words let b' = ceiling (a / b) let c' = ceiling (a / c) putStrLn $ if c' <= (b' * 2)`div`3 then "YES" else "NO"