using System; using System.Linq; namespace ConsoleApp3 { class Program { static void Main(string[] args) { int n = int.Parse(Console.ReadLine()); int[] item = new int[10]; for (int i = 0; i < n; i++) { int[] a = Console.ReadLine().Split().Select(x => int.Parse(x)).ToArray(); item[a[0] - 1] += 1; item[a[1] - 1] += 1; item[a[2] - 1] += 1; } int ans = 0; int amari = 0; for (int i = 0; i < 10; i++) { ans += item[i] / 2; if (item[i] % 2 != 0 ) { amari++; } } ans += amari / 4; Console.WriteLine(ans); } } }