public static void Main()
string repChars = "Kkkkkkkirttteessssh";
repChars = repChars.ToLower();
Console.WriteLine(repChars);
for(int i = 0; i < repChars.Length; i++)
for (int j =0; j < repChars.Length; j++)
if(repChars[i] == repChars[j])
Console.WriteLine("Most Repeated Consecutive Char is : " + repChar);
Console.WriteLine(" and Count is : " + maxCnt);