public static void Main()
Console.WriteLine("Enter the first string");
string strone = Console.ReadLine();
Console.WriteLine("Enter the second string");
string strtwo = Console.ReadLine();
strone = strone.ToLower();
strtwo = strtwo.ToLower();
Console.WriteLine("Equal");
Console.WriteLine("Not Equal");
string strcelebrate = "Celebrating 200 year of Indiana University";
int intIndex = strcelebrate.IndexOf("year");
string strnew = strcelebrate.Insert(intIndex + 4, "s");
Console.WriteLine("New String: " + strnew);