C. Lunch Break
time limit per test
1.5 seconds
memory limit per test
256 megabytes
input
standard input
output
standard output

Hasan decided to invite his colleagues and buy them lunch from his favorite restaurant. As usual, he got carried away and forgot to order early, for that he decided to help the delivery guy.

There are 3 different roads that the delivery guy can choose from. Given the length of each road, what is the best one that he can choose to deliver the food as soon as possible?

Input

The first line of the input contains an integer T (1 ≤ T ≤ 105), where T is the number of the test cases.

Each test case has one line that contains three distinct integers a, b and c (1 ≤ a, b, c ≤ 109), the lengths of the three different roads from the restaurant to Hasan's company.

Output

For each test case, print "First" (without quotations) if the delivery guy should choose the first road, "Second" (without quotations) if he should choose the second road, "Third" (without quotations) if he should choose the third way.

Example
Input
3
5 10 7
20 3 9
8 15 2
Output
First
Second
Third