public static void Main()
Console.WriteLine("Hello World");
static string Ins(string S)
static string Ins1(string S, int index, int cntr)
if (index == S.Length)return " ";
return S[index] +"*"+ Ins1(S, index+1, cntr+1);
return S[index] + Ins1(S, index+1, cntr+1);