Number of loops
Execution time limit is 1 second
Runtime memory usage limit is 128 megabytes
Simple directed graph is given by adjacency list. Find the number of loops in it.
Input
The first line contains the number of vertices n (1 ≤ n ≤ 100). Then n lines are given. The i-th line contains the description of all edges, outgoing from the i-th vertex. Description starts with the number of outgoing edges. Then given the vertex numbers where the edges go. All vertices are numbered from 1 to n.
Output
Print the number of loops in the graph.
Examples
Input #1
Answer #1
Submissions 292
Acceptance rate 62%