public static void Main()
Console.WriteLine("Enter your 1st string: ");
string str1 = Console.ReadLine();
Console.WriteLine("Enter your 2nd string: ");
string str2 = Console.ReadLine();
str1 = str1.Trim().ToLower();
str2 = str2.Trim().ToLower();
Console.WriteLine("Equal");
Console.WriteLine("Not Equal");
string strIU = "Celebrating 200 year of Indiana University";
strIU = strIU.Insert(strIU.IndexOf("year")+"year".Length,"s");
Console.WriteLine(strIU);