using System;
public class Program
{
public static void Main()
string s = "Hello";
s = s.Insert(0, "Say");
}