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
#include <stdio.h>
#include <stdlib.h>
#include <string.h>
#include <math.h>

int main() {
        int n,t;
        char c;
        int map[16] = { 0, };

        scanf("%d", &n);
        while (n--) {
                scanf("%1d%c", &t, &c);
                map[3*t+c-'A'-3] ++;
        }

        for (n=0; n<12; ++n)
                if (map[n] < 1) {
                        printf("NIE");
                        return 0;
                }
        if (map[12] < 2 || map[13] < 2 || map[14] < 2) {
                printf("NIE");
                return 0;
        }

        printf("TAK");

        return 0;
}