using System;
using System.Collections;
using System.Collections.ObjectModel;
using System.Collections.Specialized;
using System.Collections.Generic;
using System.Linq;
using System.Reflection;
class Program
{
static void Main()
{
var letters = new SortedSet("rntsoft.com");
foreach (char c in letters)
Console.Write(c);
}
}