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

int main()
{
	int n;
	bool ok=1;
	string z;
	int a[7]={}, b[7]={}, c[7]={};
	
	cin >> n;
	
	while (n--)
	{
		cin >> z;
		
		if (z[1]=='A')
			a[(int)z[0]-48]++;
		if (z[1]=='B')
			b[(int)z[0]-48]++;
		if (z[1]=='C')
			c[(int)z[0]-48]++;
	}
	
	for (int i=1; i<5; i++)
	{
		if (a[i]==0 ||b[i]==0 || c[i]==0)
			ok=0;
	}
	
	if (a[5]<2 || b[5]<2 || c[5]<2)
		ok=0;
	
	if (ok)
		cout << "TAK";
	else
		cout << "NIE";
	
	return 0;
}