#Lutece0427. Free Candies

Free Candies

Migrated from Lutece 427 Free Candies

All parts of this problem, including description, images, samples, data and checker, might be broken. If you find bugs in this problem, please contact the admins.

Description

Little Bob is playing a game. He wants to win some candies in it - as many as possible.

There are 44 piles, each pile contains NN candies. Bob is given a basket which can hold at most 55 candies. Each time, he puts a candy at the top of one pile into the basket, and if there're two candies of the same color in it , he can take both of them outside the basket and put them into his own pocket. When the basket is full and there are no two candies of the same color, the game ends. If the game is played perfectly, the game will end with no candies left in the piles.

For example, Bob may play this game like this (N=5N=5):

title

Note that different numbers indicate different colors; there are 2020 kinds of colors numbered 1201\cdots 20.

'Seems so hard...' Bob got very much puzzled. How many pairs of candies could he take home at most?

Input

The input will contain no more than 1010 test cases. Each test case begins with a line containing a single integer nn (1n401\leq n\leq 40) representing the height of the piles. In the following nn lines, each line contains four integers xi1x_{i_1}, xi2x_{i_2}, xi3x_{i_3}, xi4x_{i_4} (in the range 1201\cdots 20). Each integer indicates the color of the corresponding candy. The test case containing n=0n=0 will terminate the input, you should not give an answer to this case.

Output

Output the number of pairs of candies that the cleverest little child can take home. Print your answer in a single line for each test case.

Samples

5
1 2 3 4
1 5 6 7
2 3 3 3
4 9 8 6
8 7 2 1
1
1 2 3 4
3
1 2 3 4
5 6 7 8
1 2 3 4
0
8
0
3

Resources

OIBH Online Programming Contest #1