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
#include <iostream>
using namespace std;
int runda[5][3],a;
string b;
int main()
{
    std::ios_base::sync_with_stdio(0);
    cin>>a;
    for(int i=0; i<a; i++)
    {
       cin>>b;
    runda[b[0]%49][b[1]%65]++;
    }
    for(int i=0; i<5; i++)
    {
        for(int j=0; j<=2; j++)
        {
            if(runda[i][j]==0)
                {
                cout<<"NIE";
                return 0;
                }
        }
    }
    if(runda[4][0]>=2 && runda[4][1]>=2 && runda[4][2]>=2)
    {
        cout<<"TAK";
    }
    else
    {
    cout<<"NIE";
    }

    return 0;
}