let s = System.Console.ReadLine() let mutable ans = [0..s.Length-9] |> List.exists (fun i -> (s.[i..i+8] |> Set.ofSeq |> Set.count) = 9) System.Console.WriteLine(match ans with true -> "Yes" | false -> "No")