using System;
using System.Collections.Generic;
class Program
{
static void Main() {
HashSet<string> hst = new HashSet<string>();
hst.Add("c#");
hst.Add("c");
hst.Add("c#");
hst.Add("java");
hst.Add("c#");
foreach (var item in hst) {
Console.WriteLine(item);
}
}
}
/*
run:
c#
c
java
*/