using System.Threading.Tasks;
using System.Collections.Generic;
public static void Main()
HashSet<string> QQ = new(StringComparer.OrdinalIgnoreCase);
var old = QQ.ToHashSet(StringComparer.OrdinalIgnoreCase);
var insertion = QQ.Except(old);
var removal = old.Except(QQ);
foreach(var h in insertion) Console.WriteLine(h);
foreach(var h in removal) Console.WriteLine(h);
Console.WriteLine("Done");