using System;
class Program
{
    static void Main(string[] args)
    {
        var N = int.Parse(Console.ReadLine());
        for (int i = 0; i < N; i++)
        {
            Console.WriteLine("Hello! You're new here, right? It's nice to meet you.");
        }
    }
}