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 n;
char s[300005], t[300005];
int cnt[2][26][2];

int main() {
    scanf("%d", &n);
    scanf("%s", s);
    scanf("%s", t);

    for(int i = 0; i < n; i++) {
        cnt[0][s[i] - 'a'][i & 1]++;
    }

    for(int i = 0; i < n; i++) {
        cnt[1][t[i] - 'a'][i & 1]++;
    }

    for(int i = 0; i < 26; i++)
        for(int j : {0, 1})
            if(cnt[0][i][j] != cnt[1][i][j]) 
                return puts("NIE"), 0;
    puts("TAK");
}