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
#include<bits/stdc++.h>
#define ll long long
using namespace std;

int cnt[5][3];

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

    int n;
    cin >> n;
    string s;
    for(int i = 0; i < n; i++) {
        cin >> s;
        cnt[s[0]-49][s[1]-65]++;
    }
    for(int j = 0; j < 3; j++) {
        for(int i = 0; i < 4; i++) {
            if(cnt[i][j] < 1) {
                cout << "NIE\n";
                return 0;
            }
        }
        if(cnt[4][j] < 2) {
            cout << "NIE\n";
            return 0;
        }
    }
    cout << "TAK\n";
    return 0;
}