using System.Collections.Generic;
public static void Main()
int rowsCount = int.Parse(Console.ReadLine());
HashSet<string> usernames = new HashSet<string>();
for (int i = 0; i < rowsCount; i++)
string username = Console.ReadLine();
foreach (string username in usernames)
Console.WriteLine(username);