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
#include<iostream>
using namespace std;
const int limit=20;
int t[limit];
int main(){
    int n;
    cin>>n;
    for(int i=0; i<n; i++){
        string a;
        cin>>a;
        int x=a[1]-65;
        x+=(a[0]-49)*3;
       // cout<<a<<" "<<x<<"\n";
        t[x]++;
    }
    for(int i=0; i<15; i++){
           // cout<<i<<" "<<t[i]<<"\n";
        if(t[i]==0){
            cout<<"NIE";
            return 0;
        }
        if(t[i]==1 && i>11){
            cout<<"NIE";
            return 0;
        }
    }
    cout<<"TAK";
    return 0;
}