static void Main(string[] args)
Console.Write("Строка: ");
string str = Console.ReadLine();
for (int i = 0; i < str.Length; i++)
if (str[i].ToString() == temp)
result += $"{temp}{counter}";
result += $"{str[i]}{counter}";
temp = str[i].ToString();
Console.WriteLine(result);