{"raw_statement":[{"iden":"problem statement","content":"Katsusando loves omelette rice.\nBesides, he loves crème brûlée, tenderloin steak and so on, and believes that these foods are all loved by everyone.\nTo prove that hypothesis, he conducted a survey on $M$ kinds of foods and asked $N$ people whether they like these foods or not.\nThe $i$\\-th person answered that he/she only likes the $A_{i1}$\\-th, $A_{i2}$\\-th, $...$, $A_{iK_i}$\\-th food.\nFind the number of the foods liked by all the $N$ people."},{"iden":"constraints","content":"*   All values in input are integers.\n*   $1 \\leq N, M \\leq 30$\n*   $1 \\leq K_i \\leq M$\n*   $1 \\leq A_{ij} \\leq M$\n*   For each $i$ $(1 \\leq i \\leq N)$, $A_{i1}, A_{i2}, ..., A_{iK_i}$ are distinct."},{"iden":"constraints","content":"Input is given from Standard Input in the following format:\n\n$N$ $M$\n$K_1$ $A_{11}$ $A_{12}$ $...$ $A_{1K_1}$\n$K_2$ $A_{21}$ $A_{22}$ $...$ $A_{2K_2}$\n$:$\n$K_N$ $A_{N1}$ $A_{N2}$ $...$ $A_{NK_N}$"},{"iden":"output","content":"Print the number of the foods liked by all the $N$ people."},{"iden":"sample input 1","content":"3 4\n2 1 3\n3 1 2 3\n2 3 2"},{"iden":"sample output 1","content":"1\n\nAs only the third food is liked by all the three people, $1$ should be printed."},{"iden":"sample input 2","content":"5 5\n4 2 3 4 5\n4 1 3 4 5\n4 1 2 4 5\n4 1 2 3 5\n4 1 2 3 4"},{"iden":"sample output 2","content":"0\n\nKatsusando's hypothesis turned out to be wrong."},{"iden":"sample input 3","content":"1 30\n3 5 10 30"},{"iden":"sample output 3","content":"3"}],"translated_statement":null,"sample_group":[],"show_order":["default"],"formal_statement":null,"simple_statement":null,"has_page_source":true}