Dining Cows are such finicky eaters. Each cow has a preference for certain foods and drinks, and she will consume no others. Farmer Mike has cooked fabulous meals for his cows, but he forgot to check his menu against their preferences. Although he might not be able to stuff everybody, he wants to give a complete meal of both food and drink to as many cows as possible. Farmer Mike has cooked F (1 <= F <= 100) types of foods and prepared D (1 <= D <= 100) types of drinks. Each of his N (1 <= N <= 100) cows has decided whether she is willing to eat a particular food or drink a particular drink. Farmer Mike must assign a food type and a drink type to each cow to maximize the number of cows who get both. Each dish or drink can only be consumed by one cow (i.e., once food type 2 is assigned to a cow, no other cow can be assigned food type 2). PROBLEM NAME: dining INPUT FORMAT: * Line 1: Three space-separated integers: N, F, and D * Lines 2..N+1: Each line i starts with a two integers F_i and D_i, the number of dishes that cow i likes and the number of drinks that cow i likes. The next F_i integers denote the dishes that cow i will eat, and the D_i integers following that denote the drinks that cow i will drink. SAMPLE INPUT 4 3 3 2 2 1 2 3 1 2 2 2 3 1 2 2 2 1 3 1 2 2 1 1 3 3 INPUT DETAILS: Cow 1: foods from {1,2}, drinks from {1,3} Cow 2: foods from {2,3}, drinks from {1,2} Cow 3: foods from {1,3}, drinks from {1,2} Cow 4: foods from {1,3}, drinks from {3} OUTPUT FORMAT: * Line 1: A single integer that is the maximum number of cows that can be fed both food and drink that conform to their wishes SAMPLE OUTPUT 3 OUTPUT DETAILS: One way to satisfy three cows is: Cow 1: no meal Cow 2: Food #2, Drink #2 Cow 3: Food #1, Drink #1 Cow 4: Food #3, Drink #3 The pigeon-hole principle tells us we can do no better since there are only three kinds of food or drink. Other test data sets are more challenging, of course.