public static void Main()
Console.WriteLine("Hello, What is your name?");
name = Console.ReadLine();
Console.WriteLine("How many times do you want to see your name on the screen");
times = int.Parse(Console.ReadLine());
for (int i = 1; i<=times; i++)
Console.WriteLine(i + " " + name);