open System type Sol() = member this.Solve() = let S = stdin.ReadLine() |> Seq.sort |> Seq.rev |> Seq.toArray Console.WriteLine(new String(S)); let mySol = new Sol() mySol.Solve()