1
 2
 3
 4
 5
 6
 7
 8
 9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
#include <ctime>
#include <bitset>
#include <iterator>
#include <string>
#include <vector>
#include <map>
#include <list>
#include <set>
#include <queue>
#include <iostream>
#include <sstream>
#include <stack>
#include <deque>
#include <cmath>
#include <memory.h>
#include <cstdlib>
#include <cstdio>
#include <cctype>
#include <algorithm>
#include <utility>
using namespace std;

vector<string> ans;

int main()
{
	int v=0;
	scanf("%d", &v);
	ans.resize(v);
	for(int j=0;j<v;j++)
	{
		bool can = true;
		int minX1=0, maxX1=0, minX2=0, maxX2=0;
		int n=0;
		scanf("%d", &n);
		scanf("%d%d%d%d", &minX1,&maxX1,&minX2,&maxX2);
		for(int i=1; i<n;i++)
		{
			int temp1=0, temp2=0, temp3=0, temp4=0;
			scanf("%d%d%d%d", &temp1,&temp2,&temp3,&temp4);
			if(minX1>=temp1 && maxX1<=temp2 && minX2>=temp3 && maxX2<=temp4)
			{
				minX1=temp1; 
				maxX1=temp2; 
				minX2=temp3;
				maxX2=temp4;
				can = true;
			}
			else if(minX1>temp1 || maxX1<temp2 || minX2>temp3 || maxX2<temp4)
			{
				minX1=min(minX1, temp1);
				maxX1=min(maxX1, temp2);
				minX2=min(minX2, temp3);
				maxX2=min(maxX2, temp4);
				can = false;
			}
		}
		if(can)
		{
			ans[j] = "TAK";
		}
		else
		{
			ans[j] = "NIE";
		}

		
	}
	for(int i=0;i<v;i++)
	{
		if(ans[i] == "TAK")
		{
			printf("TAK\n");
		}
		else
		{
			printf("NIE\n");
		}
	}
	return 0;
}