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 tab[109];
string s;

int main()
{
    ios_base::sync_with_stdio(0);
    cin.tie(0);
    cout.tie(0);
    int n,a,b;
    cin>>n;
    for(int i=1; i<=n; i++)
    {
        cin>>s;
        a = s[0] - '1';
        b = s[1] - 'A' + 1;
        tab[3 * a + b]++;
    }
    a = 1;
    for(int i=1; i<=12; i++) if(tab[i] < 1) a = 0;
    for(int i=13; i<=15; i++) if(tab[i] < 2) a = 0;
    if(a == 0) cout<<"NIE";
    else cout<<"TAK";
    return 0;
}