404398: GYM101498 C Lunch Break
Description
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?
InputThe 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.
OutputFor 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.
ExampleInput3Output
5 10 7
20 3 9
8 15 2
First
Second
Third