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
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
#include<bits/stdc++.h>
using namespace std;
int odp[6][4];
int main()
{
	ios_base::sync_with_stdio(0);
	cin.tie(0);
	cout.tie(0);
	int n;
	cin>>n;
	string S;
	for(int i=1;i<=n;i++)
	{
		cin>>S;
		int x=S[0]-int('0');
		int y;
		if(S[1]=='A')
		y=1;
		else if(S[1]=='B')
		y=2;
		else
		y=3;
		odp[x][y]++;
	}
	if(n<18)
	{
		cout<<"NIE";
		return 0;
	}
	bool f=1;
	for(int i=1;i<=5;i++)
	{
		for(int j=1; j<=3; ++j)
		{
			if(i==5)
			{
				if(odp[i][j]>1)
				{
				}
				else
				{
					f=0;
				}
			}
			else
			{
				if(odp[i][j]>0)
				{
				}
				else
				f=0;
			}
		}
	}
	if(f==0)
	cout<<"NIE";
	else
	cout<<"TAK";
	return 0;
}