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
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
#include <bits/stdc++.h>
using namespace std;
#define debug(x) cerr << #x << " " << x << endl;

#define int long long // uważaj

const int N = 1e6 + 7;

void solve(){
    int n;
    cin >> n;
    multiset <string> S;
    for(char c1 = '1'; c1 <= '5'; c1++) {
        for(char c2 = 'A'; c2 <= 'C'; c2++) {
            string str;
            str.push_back(c1);
            str.push_back(c2);
            S.insert(str);
        }
    }

    for(char c2 = 'A'; c2 <= 'C'; c2++) {
        string str;
        str.push_back('5');
        str.push_back(c2);
        S.insert(str);
    }

    // for(auto x : S) {
    //     cout << x << endl;
    // }

    while(n--) {
        string str;

        cin >> str;
        if(S.find(str) != S.end()) {
            S.erase(S.find(str));
        }
    }

    if(S.empty()) {
        cout << "TAK\n";
    } else {
        cout << "NIE\n";
    }
}

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

	int test = 1;

	while(test--){
		solve();
	}

	return 0;
}