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

using namespace std;

int tab[15]={0};

int main(){
    std::ios_base::sync_with_stdio(false);
    std::cin.tie(NULL);

    int n;
    cin>>n;
    string a;
    for(int i=0;i<n;i++){
        cin>>a;
        //cout<<a;
        if(a=="1A")tab[0]=2;
        else if(a=="1B")tab[1]=2;
        else if(a=="1C")tab[2]=2;
        else if(a=="2A")tab[3]=2;
        else if(a=="2B")tab[4]=2;
        else if(a=="2C")tab[5]=2;
        else if(a=="3A")tab[6]=2;
        else if(a=="3B")tab[7]=2;
        else if(a=="3C")tab[8]=2;
        else if(a=="4A")tab[9]=2;
        else if(a=="4B")tab[10]=2;
        else if(a=="4C")tab[11]=2;
        else if(a=="5A")tab[12]++;
        else if(a=="5B")tab[13]++;
        else if(a=="5C")tab[14]++;
    }
    for(int i=0;i<15;i++){
        if(tab[i]<2){
            cout<<"NIE";
            return 0;
        }
    }
    cout<<"TAK";


    return 0;
}