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
#include <cstdio>
#include <map>
#include <string>

using namespace std;

int main() {
  int n;
  int rounds[300][300];

  for (int i='1'; i<'6'; i++) {
    for (int j='A'; j<'D'; j++) {
      rounds[i][j] = 1;
    }
  }

  rounds['5']['A']++;
  rounds['5']['B']++;
  rounds['5']['C']++;

  scanf("%d", &n);

  for (int i=0; i<n; i++) {
    char code[15];

    scanf("%s", code);

    rounds[code[0]][code[1]]--;
  }

  for (int i='1'; i<'6'; i++) {
    for (int j='A'; j<'D'; j++) {
      // printf("%c%c %d\n", i, j, rounds[i][j]);
      if (rounds[i][j] > 0) {
        puts("NIE");
        return 0;
      }
    }
  }

  puts("TAK");
  return 0;
}