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
#include <iostream>
#include <string>

int main()
{
	short results[5][3] = { {0, 0 ,0},
							{0, 0, 0},
							{0, 0, 0},
							{0, 0, 0},
							{0, 0, 0} };
	int howMany;
	std::string input;


	std::cin >> howMany;
	if (howMany < 18) {
		std::cout << "NIE";
		return 0;
	}

	for (int i = 0; i < howMany; i++) {
		std::cin >> input;
		results[input[0] - '1'][input[1] - 'A'] += 1;
	}

	for (int i = 0; i < 5; i++) {
		for (int j = 0; j < 3; j++) {
			if (i == 4) {
				if (results[i][j] < 2) {
					std::cout << "NIE";
					return 0;
				}
			}
			else {
				if (results[i][j] < 1) {
					std::cout << "NIE";
					return 0;
				}
			}
		}
	}

	std::cout << "TAK";
	return 0;
}