using System;
public class Program
{
public static void Main()
//Mariana Gonzalez
string N;
int num;
Console.WriteLine("hi, what is your name?");
N = Console.ReadLine();
Console.WriteLine("How many times would you want to see your name on the screen?");
num = int.Parse(Console.ReadLine());
for(int x = 1; x<= num; x++)
Console.WriteLine(x +N);
}