Problem: You have sticks of the given lengths.
Your task is to choose exactly four of them in such a way that they can form a rectangle. No sticks can be cut to pieces, each side of the rectangle must be formed by a single stick. No stick can be chosen multiple times. It is guaranteed that it is always possible to choose such sticks.
Let be the area of the rectangle and be the perimeter of the rectangle.
The chosen rectangle should have the value minimal possible. The value is taken without any rounding.
If there are multiple answers, print any of them.
Each testcase contains several lists of sticks, for each of them you are required to solve the problem separately.
Input Format: The first line contains a single integer () — the number of lists of sticks in the testcase.
Then lines follow — lines and of them describe the -th list. The first line of the pair contains a single integer () — the number of sticks in the -th list. The second line of the pair contains integers () — lengths of the sticks in the -th list.
It is guaranteed that for each list there exists a way to choose four sticks so that they form a rectangle.
The total number of sticks in all lists doesn't exceed in each testcase.
Output Format: Print lines. The -th line should contain the answer to the -th list of the input. That is the lengths of the four sticks you choose from the -th list, so that they form a rectangle and the value of this rectangle is minimal possible. You can print these four lengths in arbitrary order.
If there are multiple answers, print any of them.
Note: There is only one way to choose four sticks in the first list, they form a rectangle with sides and , its area is , perimeter is . .
The second list contains subsets of four sticks that can form rectangles with sides , and . Their values are , and , respectively. The minimal one of them is the rectangle .
You can choose any four of the given sticks from the third list, they will form a square with side , which is still a rectangle with sides .