//SOAL NOMOR 12
using System;
public class Program
{
public static void Main()
string teks;
char a;
int b = 0;
int c ;
Console.WriteLine("Masukkan Teks Anda : ");
teks = Console.ReadLine();
Console.WriteLine("Teks anda dibawah");
for( ; ;b++)
c = teks.Length;
if (b<c)
a = Convert.ToChar(teks[b]);
Console.WriteLine(a);
}
else
break;