using System;
public class Program
{
public static void Main()
string x = "Long Time No See";
Console.WriteLine(x);
Console.WriteLine();
char y;
int i;
for (i=0;i<x.Length;i= i+1)
y = x[i];
Console.WriteLine("第"+(i+1)+"個字元是\""+y+"\"");
}