using System;
public class Program
{
public static void Main()
string x = "Good Morning";
Console.WriteLine(x);
Console.WriteLine();
char y;
int i;
for (i=0; i<12; i = i+1)
y = x[i];
Console.WriteLine()
}