using System;
public class Program
{
public static void Main(string[] args)
string texto;
Console.WriteLine("Texto:");
texto = Console.ReadLine();
Console.WriteLine("\nComprimento do texto:{0} carateres.\n", texto.Length);
for (int i = 0; i < texto.Length; i++)
Console.WriteLine("{0}", texto[i]);
}