시간 제한메모리 제한제출정답맞힌 사람정답 비율
1 초 (추가 시간 없음) 256 MB237750.000%

문제

Maggy loves to bake. She has recently bought three round baking pans of known base area. She baked cakes in the first two of them and intends to take them to a party at a friend's house. However, as carrying two baking pans is quite tricky, it is much more preferable to put both cakes into the third baking pan and carry only it. Maggy cannot really tell whether the cakes will fit. Moreover, she needs to leave some slack between the cakes, as otherwise the icings would mix. Help Maggy out -- compute whether the two cakes fit into the third baking pan.

입력

The first line of the input contains one integer $t$ --- number of the data sets ($1 \leq t \leq 1\,000$). One data set consists of three integers $p, d, t$ $(1 \leq p, d, t \leq 8 \cdot 10^9)$, each separated by a single space, denoting the areas of the first, second and third baking pan, respectively.

출력

For each data set you should print a single line containing exactly one word: "TAK" (Polish for "yes") if the cakes from the first and second baking pans fit into the third baking pan together, with a non-zero slack, or "NIE" (Polish for "no") in the other case.

예제 입력 1

3
3 9 25
4 9 25
5 9 25

예제 출력 1

TAK
NIE
NIE