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

int data[6][3];

bool check() {
  for (int i = 0; i < 4; i++) {
    for (int j = 0; j < 3; j++) {
      if (data[i][j] < 1) {
        return 0;
      }
    }
  }
  for (int j = 0; j < 3; j++) {
    if (data[4][j] < 2) {
      return 0;
    }
  }
  return 1;
}

int main() {
  int n, a;
  char b;

  scanf("%d", &n);

  if (n < 18) {
    printf("NIE\n");
    return 0;
  }

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

  if (check()) {
    printf("TAK\n");
  } else {
    printf("NIE\n");
  }

  return 0;
}