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
#include <bits/stdc++.h>
using namespace std;
long long int a,n,x,t[107];
string s;
int main()
{
	cin>>n;
	for(a=0; a<n; a++){
		cin>>s;
		t[(s[0]-49)*3+s[1]-64]++;
	}
	for(a=1; a<=12; a++){
		if(t[a]>0){
			x++;
		}
	}
	if(x==12){
		if(t[13]>1&&t[14]>1&&t[15]>1){
			cout<<"TAK\n";
		}else{
			cout<<"NIE\n";
		}
	}else{
			cout<<"NIE\n";
		}
}