using System.Collections.Generic;
using System.Threading.Tasks;
public static void Main()
HashSet<int> set1 = new HashSet<int>();
foreach(var item in set1) Console.Write(item+" ");
Console.WriteLine("Введите элемент для добавления в множество");
int a = Convert.ToInt32(Console.ReadLine());
foreach(var item in set1)