public static void Main()
Console.WriteLine("Input the original string : ");
str = Console.ReadLine();
Console.WriteLine("Input the string to be searched for :");
str1 = Console.ReadLine();
Console.WriteLine("Input the string to be inserted :");
str2 = Console.ReadLine();
int i = str.IndexOf(str1);
str = str.Insert(i,str2);