public static void Main()
Console.WriteLine("Enter a string");
string str1 = Console.ReadLine();
Console.WriteLine("Enter another string");
string str2 = Console.ReadLine();
Console.WriteLine("Equal");
Console.WriteLine("Not Equal");
string strIU = "Celebrating 200 year of Indiana University";
int placement = strIU.IndexOf("year");
strIU = strIU.Insert((placement+4),"s");
Console.WriteLine(strIU);