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
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
#include <iostream>

using namespace std;
int main()
{
	cin.tie(0);
	cout.tie(0);
	ios_base::sync_with_stdio(false);
	int n;
	cin >> n;
	string a[n];

	for(int i=0;i<n;i++)
	{
		cin >> a[i];
	}
	
	int b[15];
	for(int m=0;m<15;m++)
	{
		b[m] = 0;
	}
	
	b[12] = -1;
	b[13] = -1;
	b[14] = -1;
	
	int c = 0;
	
	string x ;
	
	for(int j=0;j<n;j++)
	{
		x = a[j];
		if (x[1]=='A')
		{
			c = 0;
		}
		if (x[1]=='B')
		{
			c = 1;
		}
		if (x[1]=='C')
		{
			c = 2;
		}
		if (x[0]=='2')
		{
			c +=3;
		}
		if (x[0]=='3')
		{
			c +=6;
		}
		if (x[0]=='4')
		{
			c +=9;
		}
		if (x[0]=='5')
		{
			c +=12;
		}
		b[c]++;
		if(b[c]>1)
		{
			b[c] = 1;
		}
		c=0;
	}
	
	int d=0;
	
	for(int o = 0;o<15;o++)
	{
		d+=b[o];
	}
	
	if (d==15)
		{
			cout << "TAK";
		}
	else
	{
		cout << "NIE";
	}
}