Given two sets of integers, the similarity of the sets is defined to be , where is the number of distinct common numbers shared by the two sets, and is the total number of distinct numbers in the two sets. Your job is to calculate the similarity of any given pair of sets.
Input Specification
Each input file contains one test case. Each case first gives a positive integer () which is the total number of sets. Then lines follow, each gives a set with a positive () and followed by integers in the range []. After the input of sets, a positive integer () is given, followed by lines of queries. Each query gives a pair of set numbers (the sets are numbered from 1 to ). All the numbers in a line are separated by a space.
Output Specification
For each query, print in one line the similarity of the sets, in the percentage form accurate up to 1 decimal place.