1
 2
 3
 4
 5
 6
 7
 8
 9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
#include<bits/stdc++.h>
using namespace std;
int tab[2][26];
int main(){
    ios_base::sync_with_stdio(false);
    cin.tie(NULL);
    cout.tie(NULL);

    int n;
    cin>>n;
    string s, t;
    cin>>s>>t;
    for(int i=0; i<n; i++){
        tab[i&1][s[i]-'a']++;
        tab[i&1][t[i]-'a']--;
    }
    for(int i=0; i<26; i++){
        if(tab[0][i]||tab[1][i]){
            cout<<"NIE";
            return 0;
        }
    }
    cout<<"TAK";
}