• + 0 comments

    f# solution

    open System
    
    [<EntryPoint>]
    let main _ =
        Console.ReadLine()
        |> Seq.toList
        |> List.distinct
        |> List.iter Console.Write
    
        0