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
#include <bits/stdc++.h>
using namespace std;
int tab[16];
int main()
{
  int n;
  cin >> n;
  string x;
  for(int i = 1; i <= n; i++){
    cin >> x;                                         
    int nr = (x[0] - '1')*3 + (x[1] - 'A' + 1);
    tab[nr]++;
  }
  for(int i = 1; i <= 12; i++)
    if(tab[i] == 0){
      cout << "NIE\n";
      return 0;
    }
  for(int i = 13; i <= 15; i++)
    if(tab[i] < 2){
      cout << "NIE\n";
      return 0;
    }
  cout << "TAK\n";
  return 0;
}