open System let () = Console.ReadLine() |> Seq.countBy id |> Seq.exists (fun (_, c) -> c > 1) |> function | false -> "YES" | true -> "NO" |> fun s -> printfn "%s" s