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

int t[5][3];
int main(){
	for(int i = 0; i < 5; ++i){
		for(int j = 0; j < 3; ++j){
			++t[i][j];
			if(i==4)++t[i][j];
		}
	}
	int n;
	cin >> n;
	int l=18;
	string s;
	for(int i = 0; i < n; ++i){
		cin >> s;
		if(t[s[0]-'1'][s[1]-'A']>0){
			--t[s[0]-'1'][s[1]-'A'];
			--l;
		}
	}
	if(l)cout<< "NIE\n";
	else cout <<"TAK\n";
	
	return 0;
}