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

using namespace std;

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

    int zs1[26][2] = {0};
    int zs2[26][2] = {0};
    int n;
    bool f=true;
    string s1,s2;

    cin >> n;
    cin >> s1;
    cin >> s2;
    for(int i=0; i<n; i++) {
        zs1[s1[i]-97][i%2]++;
        zs2[s2[i]-97][i%2]++;
    }
    for(int i=0; i<26; i++) {
        if(zs1[i][0]!=zs2[i][0]) f=false;
    }
    for(int i=0; i<26; i++) {
        if(zs1[i][1]!=zs2[i][1]) f=false;
    }
    if(f) cout << "TAK";
    else cout << "NIE";
    return 0;
}