using System.Collections.Generic;
public static void Main()
Console.WriteLine("Hello Sets!");
Console.WriteLine("\nSorted Set");
SortedSet<string> sortSet = new SortedSet<string>();
foreach (string elem in sortSet)
Console.WriteLine("\nAdding Elements");
HashSet<string> hsSet = new HashSet<string>();
foreach (string elem in hsSet)
Console.WriteLine("\nUnion");
HashSet<string> hsAnother = new HashSet<string>();
hsSet.UnionWith(hsAnother);
foreach (string elem in hsSet)