public static void Main()
Console.WriteLine("Enter your Name");
string Name = Console.ReadLine();
char[] ch = Name.ToLower().ToCharArray();
for (int i = 0; i < ch.Length; i++)
for (int j = 0; j < ch.Length; j++)
Console.WriteLine("Letter "+ch[i]+ " repeats "+count);