public static void Main()
Console.WriteLine("hello!whats your name?");
name= Console.ReadLine();
Console.WriteLine("how many times would you like to see your name on screen?");
T = int.Parse(Console.ReadLine());
for ( int i =1; i <= T; i++)
Console.WriteLine( i+" "+name);
Console.WriteLine("Hello World");