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
#include <stdio.h>
#include <vector>
#include <algorithm>
#include <cstring>
#include <string>
#include <map>
using namespace std;

typedef long long LL;
typedef pair<int,int> PI;
typedef vector<int> VI;
#define ALL(a) (a).begin(),(a).end()
#define PB push_back
#define MP make_pair
#define FT first
#define SD second
#define Y first
#define X second

vector<string>token(string a) {
    vector<string>w;a.push_back(' ');
    while(!a.empty()){w.push_back(a.substr(0,a.find(" ")));a=a.substr(a.find(" ")+1,a.size()-1);}return w;
}

map<string,int> mapik;
vector<string> amapik;
int dodaj(string a) {if(mapik.count(a)==0) {mapik[a]=mapik.size()-1;amapik.PB(a);}return mapik[a];}

#define INF 1000000000

char tmp_str[1000];
string scanf_string() {
	scanf("%s",tmp_str);
	return tmp_str;
}

const int N = 100003;
int n;

struct Rec {
	PI st,kon;
	Rec() {}
	Rec(PI s, PI k) {
	st = s;
	kon = k;
	}
	bool operator==(Rec &b) const {
		return st == b.st && kon == b.kon;
	}
};
Rec prosto[N];

int main() {
	int d;scanf("%d",&d);
	while(d--) {
		scanf("%d",&n);
		for(int i=0;i<n;i++) {
			scanf("%d%d",&prosto[i].st.FT,&prosto[i].kon.FT);
			scanf("%d%d",&prosto[i].st.SD,&prosto[i].kon.SD);
		}
		
		Rec calosc = prosto[0];
		for(int i=0;i<n;i++) {
			calosc.st.FT = min(calosc.st.FT,prosto[i].st.FT);
			calosc.st.SD = min(calosc.st.SD,prosto[i].st.SD);
			calosc.kon.FT = max(calosc.kon.FT,prosto[i].kon.FT);
			calosc.kon.SD = max(calosc.kon.SD,prosto[i].kon.SD);
		}
		
		int res = 0;
		for(int i=0;i<n;i++) 
			if(calosc==prosto[i]) res = 1;
		
		printf("%s\n", res ? "TAK" : "NIE");
	}
	return 0;
}