class Program { static void Main(string[] args) { int total = int.Parse(Console.ReadLine()!); List wordList = new List(); for (int i = 0; i < total; i++) { string[] input = Console.ReadLine()!.Split(' '); int num = int.Parse(input[2]) + 1; input[2] = num.ToString(); wordList.Add(input[2]); } for (int i = 0;i < wordList.Count;i++) { Console.WriteLine("Hitsuji ga " + wordList[i] + " hiki"); } } }