using System;
using System.Collections.Generic;
using System.Linq;
public class Program
{
public static void Main()
{
String[ ] array = { "c#", "c", "c++", "vb", "java", "c#", "java", "c", "python" };
IEnumerable<string> unique_words = array.Distinct();
foreach (var word in unique_words)
Console.WriteLine(word);
}
}
/*
run:
c#
c
c++
vb
java
python
*/