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 <iostream>

using namespace std;

int tab[3][6];

int main()
{
    ios::sync_with_stdio(0);
    bool w=1;
    int n;
    cin>>n;
    for(int i = 0 ;i < n ;i ++)
    {
        char a ,b;
        cin>>a>>b;
        int c=a-'0',d=b-'A';
        tab[d][c]++;
    }
    for(int i = 0 ;i < 3; i ++)
    for(int j = 1 ;j < 5 ;j ++)
    if(tab[i][j]<1)w=0;
    for(int i = 0 ; i < 3 ;i ++)if(tab[i][5]<2)w=0;
    if(w==1)cout<<"TAK";
    else cout<<"NIE";
}