using System;
public class Program
{
public static void Main()
string s="ramya";
char[]ch=new char[s.Length];
for(int i=0; i<5; i++)
ch[i]=s[i];
}
Console.WriteLine(ch);
int k=ch.Length-1;
for(int i=0; i<5;i++)
for(int j=i; j<=5; j++)
Console.WriteLine(ch[0]);
Console.WriteLine();