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
#include <iostream>
using namespace std;
int tab[5][3];

int main() {
	// your code goes here
	int n;
	scanf("%d\n",&n);
	while(n--)
	{
		char s[3];
		scanf("%s",s);
		tab[s[0]-'1'][s[1]-'A']++;
	}
	bool ok=true;
	for(int i=0;i<3;i++)
	{
		for(int j=0;j<4;j++) 
		{
//			printf("%c%c = %d ",j+'1',i+'A',tab[j][i]);
			if (tab[j][i]<1) ok = false;
		}
//		printf("%c%c = %d ",4+'1',i+'A',tab[4][i]);
		if (tab[4][i]<2) ok = false;
	}
	printf(ok?"TAK\n":"NIE\n");
	return 0;
}