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
30
31
32
33
34
35
36
37
38
39
40
41
42
43
#include<bits/stdc++.h>

#define FOR(i,be,en) for(int i=be; i<en; i++)

using namespace std;

int T[6][3];

bool Correct(){
    FOR(i,1,5){
        FOR(j,0,3){
            if(!T[i][j]) return false;
        }
    }
    FOR(i,0,3){
        if(T[5][i]<2) return false;
    }
    return true;
}

int main(){
    ios_base::sync_with_stdio(0);
    cin.tie(0);

    int n;
    cin>>n;

    FOR(i,0,n){
        string s;
        cin>>s;
        T[s[0]-'0'][s[1]-'A']++;
    }

    if(Correct()){
        cout<<"TAK";
    }
    else{
        cout<<"NIE";
    }


    return 0;
}