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
#include <stdio.h>

int positions[3][5];

int main() {
	 
	int n = 0;
	char c[3];

	scanf("%d", &n);
	for(int i = 0; i<n; i++) {
		scanf("%s", c);
		positions[c[1] - 'A'][c[0] - '1']++;
	}

	int isOk = 1;

	for (int ci = 0; ci < 3; ci++) {
		for (int j = 0; j < 5; j++) {
			if ((j < 4 && positions[ci][j] < 1) || (j == 4 && positions[ci][j] < 2)) {
				isOk = 0;
			}
		}
	}
	
	if (isOk){
		printf("TAK");	
	}
	else {
		printf("NIE");
	}
	
	return 0;
}