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