using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
public class Program
{
public static void Main(String[] args)
String str;
str = "bye";
str=str.Insert(1,"hello");
}