using System; namespace No1445_gomi { class Program { static void Main(string[] args) { int num = Convert.ToInt32(Console.ReadLine()); // 読み込んだ数値の回数分出力 for (int i=0; i < num; i++) { Console.WriteLine("Hello! You're new here, right? It's nice to meet you."); } } } }