You are given two arrays and each of length . Now you are given queries. In each query, you are given two pairs of ranges i.e. a range in the array and range in the array . For each query, you need to count distinct elements in the array which is formed by combining elements of the both the ranges in the query.
Input
The first line contains an integer as input.
Next line contains space separated integers that denote elements of the array .
Next line contains space separated integers that denote elements of the array .
Next line contains an integer that denotes the total number of queries.
Next lines contain integers each i.e. and .
Output
For each query, you need to print the output in a new line.
Constraints
In query 1, the new array formed will be: 1 2 3 1 4 which contains four distinct elements.
In query 2, the new array formed will be: 1 2 3 3 1 4 which also contains four distinct elements.