REPEATED QUERIES You are given a set S of integers (each between 0 and 999, inclusive) and are required to answer queries about them. Each query comes with an integer q (also between 0 and 999, inclusive). The correct response to a query is the number of integers in the set S that are less than or equal to q. Input The first line of input has n+1 integers (n < 10,000) separated by spaces. The first integer on this line is n. The next n integers are the elements of set S. The next lines all have a single integer -- the query. Output For each query output "x elements." where x is the correct response to the query. Sample Input 5 1 7 9 9 5 3 9 Sample Output 1 elements. 5 elements.