using System; using System.Collections; using System.Collections.Generic; class Example { public static void Main() { HashSet h = new HashSet(); for (int j=0; j<9; j++) { Console.Write("Введіть Ваше прізвище: "); string s = Console.ReadLine(); if (h.Contains(s)) Console.WriteLine("Раді знову вас бачити!"); else { Console.WriteLine("Спасибі, що вибрали саме нас!"); h.Add(s); } } } }