public static void Main()
Console.WriteLine(" Hello! What's your name?");
nom = Console.ReadLine();
Console.WriteLine(" How many times would yo like to see your name on screen");
num = int.Parse(Console.ReadLine());
for (int m = 1; m <= num; m++)
Console.WriteLine(m +" "+ nom);