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

using namespace std;
using namespace __gnu_pbds;

void nie(){
	cout << "NIE";
	exit(0);
}

map<string,int>mapa;

int main(){
	ios_base::sync_with_stdio(0);
	cin.tie(0);
	cout.tie(0);
	
	string s;
	int n;
	
	cin >> n;
	while(n--){
		cin >> s;
		mapa[s]++;
	}
	
	for(int i=1; i<=5; i++){
		for(char j='A'; j<='C'; j++){
			s.clear();
			s += (i+'0');
			s += j;
			
			if(i<5 && mapa[s]<1) nie();
			if(i==5 && mapa[s]<2) nie();
		}
	}
	
	cout << "TAK";
	
	return 0;
}