using System;
using System.Collections.Generic;
public class Program
{
public static void Main(string[] args)
{
ISet<string> set = new HashSet<string> {"c#", "vb.net", "c", "c++", "python"};
Console.WriteLine(string.Join(" ", set));
}
}
/*
run:
c# vb.net c c++ python
*/