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
#include<bits/stdc++.h>

using namespace std;

int wyn[6][3];

int n,a;
char c;

bool ok=true;

int main(){

	ios_base::sync_with_stdio(0);
	cin.tie(0);
	cout.tie(0);

	cin>>n;
	while(n--){
		cin>>a>>c;
		wyn[a][c-'A']++;
	}
	
	for(int i=1;i<=4;i++) 
		for(int j=0;j<3;j++) ok &= wyn[i][j];
		
	for(int i=0;i<3;i++) ok &= (wyn[5][i]>1);
	
	if(ok) cout<<"TAK\n"; else cout<<"NIE\n";
		
	return 0;
}