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 <bits/stdc++.h>
using namespace std;

int main(){
    map<string, int>m;
    int n;
    cin>>n;
    for(int i=0; i<n; i++){
        string s;
        cin>>s;
        m[s]++;
    }
    for(int i=1; i<=5; i++){
        for(int j=0; j<3; j++){
            char tmp1=('0'+i), tmp2=('A'+j);
            string s;
            s.push_back(tmp1); s.push_back(tmp2);
            int ex=(i<=4? 1:2);
            if(m[s]<ex){
                cout<<"NIE\n";
                return 0;
            }
        }
    }
    cout<<"TAK\n";
    return 0;
}