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>

using namespace std;

int n;
string s;
map<string, int> mapka;
bool czy=0;


int main()
{
	ios_base::sync_with_stdio(0); cin.tie(0);
	cin>>n;
	while(n--)
	{
		cin>>s;
		mapka[s]++;
	}
	for(char i='1'; i!='6'; i++)
	{
		string w="";
		w+=i;
		for(char j='A'; j!='D'; j++)
		{
			string nowy=w;
			nowy+=j;
			//cerr<<"nowy: "<<nowy<<endl;
			if(i=='5')
			{
				if(mapka[nowy]<2) czy=1;
			}
			else
			{
				if(mapka[nowy]<1) czy=1;
			}
		}
			
	}
	cout<<(czy?"NIE":"TAK")<<endl;
	return 0;
}