public static void Main()
Console.WriteLine("Hello, what your name?");
name = Console.ReadLine();
Console.WriteLine("How many times would you like to see your name on screen?");
num = int.Parse(Console.ReadLine());
for(int a = 1; a <= num; a++)
Console.WriteLine(a +" "+ name);