using System;public class Program{public static void Main(){
Console.WriteLine(); string gyma = Console.ReadLine();
Console.WriteLine(" въведен string : = " + gyma);
int N = gyma.Length; Console.WriteLine("брой символи = {0}", N);
char[] ob = gyma.ToCharArray();
Console.Write(" ОБРАТНО string : = ");
var txt = gyma.ToCharArray();
for (int i = 0; i < N; i++)
Console.WriteLine(" " + i + ":" + txt[i] + " <=> " + j + ":" + txt[j]);