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
#include "iostream"
using namespace std;;

int tab[7][3];;

int main(){
  int n; cin>>n;
  int a; char c;
  for(int i = 0; i<n; i++){
	cin>>a>>c;
	tab[a][c-'A']++;
  }
   
  bool odp = true;;

  for(int i = 1; i<=5; i++)
    for(int j = 0; j<3; j++)
      if(tab[i][j] < 1)
	      odp = false;
  if(tab[5][0] < 2 or tab[5][1] < 2 or tab[5][2] < 2)
	  odp = false;

  if(odp)
    cout<<"TAK\n";
  else
    cout<<"NIE\n";
}