using System;
public class Program
{
public static void Main()
string phil;
Console.WriteLine("Why do you keep coming here? There's nothing to do.");
Console.WriteLine("But uhhh, if you insist, you can stay, but tell me your name first!");
phil = Console.ReadLine();
for(int i = 1; i <= 50; i++)
Console.WriteLine(phil);
}