Cheapest? --------- Alkmaar is a small town in the north of the Netherlands. The town is famous for its cheese. The Alkmaar Cheese Market (ACM for short) prides itself for not only having the best cheese, but also the cheapest cheese. To determine that this is indeed the case, the ACM needs your help. They want you to compare their cheese price with the cheese price of the ten other major cheese markets in the Netherlands. Input ----- The first line contains a positive integer N, which is the number of test cases. Each test case consists of a single line, containing 11 positive real numbers smaller than 5.0. The first real number is the cheese price of the ACM and the remaining 10 real numbers are the cheese prices of the other cheese markets. (See the link with hints on how to process input.) Output ------ The output consists of one line for each test case. That line consists of true if the cheese prize of the ACM is strictly smaller than the cheese prize of all the other cheese markets, and false otherwise. (See the link with hints on how to run your code.) Sample input ------------ 5 0.05 1.84 0.60 2.50 1.70 1.30 1.56 1.95 4.47 0.48 3.28 0.23 3.09 3.55 0.88 3.90 4.58 0.38 3.86 3.69 0.88 4.03 0.37 0.94 1.21 3.57 3.74 3.29 1.09 1.20 4.10 4.95 2.76 0.94 4.39 4.42 2.99 3.85 1.63 1.83 3.69 1.38 2.57 0.23 0.73 4.43 2.64 0.67 0.91 4.52 1.12 3.38 4.08 3.32 1.94 Sample output ------------- true true true false false