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
#include <bits/stdc++.h>

using namespace std;
int n;
string word[2];
int cnt[2][2][27]; // parz, niep

bool solv()
{
    for(int i = 0; i < n; i++) {
        cnt[0][i % 2][word[0][i] - 97]++;
        cnt[1][i % 2][word[1][i] - 97]++;
    }
    for(int i = 0; i < 2; i++) {
        for(int j = 0; j <= 26; j++) {
            if(cnt[0][i][j] != cnt[1][i][j])
                return false;
        }
    }
    return true;
}

int main()
{
    ios_base::sync_with_stdio(false);
    cin.tie(0); cout.tie(0);
    cin >> n;
    cin >> word[0];
    cin >> word[1];
    if(solv())
        cout << "TAK";
    else
        cout << "NIE";


    return 0;
}