Scanf.scanf "%d %d %d" (fun a b c -> let n = (a + b - 1) / b in let p = (a + c - 1) / c in print_endline @@ if p * 3 <= n * 2 then "YES" else "NO" )