public static void Main()
Console.WriteLine("Hello World");
string src1 = "The fat cat walked on the wall.";
StringTokenizer st = new StringTokenizer(src1,"");
while(st.HasMoreTokens())
Console.WriteLine(st.NextToken());
string src2 = "Hello World!";
while(st.HasMoreTokens())
Console.WriteLine(st.NextToken());