import java.util.*; public class PowerUp { public static void main(String[] args){ Scanner scanner = new Scanner(System.in); try{ int[] Item = new int[10]; int Power = 0; int Amari = 0; int Number = scanner.nextInt(); int[] Bag = new int[Number*3]; for(int i = 0 ; i < Number*3 ; i++){ Item[scanner.nextInt() - 1] += 1; } //数字が重複するペアを抽出する for(int j = 0 ; j < Item.length ; j++){ Power += Item[j]/2; Amari += Item[j]%2; } Power += Amari / 4; System.out.println(Power); }catch(InputMismatchException e){ System.out.println("数字を入力してください。"); }catch(Exception E){ System.out.println("予期せぬエラーです。"); } } }