public static void Main()
string a = "Love for all Hatred for none!";
string b = "LOVE FOR ALL HATRED FOR NONE!";
string c = "love for all hatred for none!";
string d = "Love for all Hatred for none!";
Console.WriteLine("a matches b.");
Console.WriteLine("a doesn't match b");
Console.WriteLine("a matches c");
Console.WriteLine("a doesn't match c");
Console.WriteLine("a matches d");
Console.WriteLine("a doesn't match d");