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