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