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
#include <iostream>
#include <algorithm>
#include <vector>
using namespace std;

#define REP(i,n) for(int i=0; i<(n); i++)
#define FOR(i,a,b) for(int i=(a); i<=(b); i++)

bool matched(string a, string b) {
    sort(a.begin(), a.end());
    sort(b.begin(), b.end());
    return a == b;
}

int main() {
    int n;
    cin >> n;
    string s1, s2;
    cin >> s1 >> s2;
    string even1, even2;
    string odd1, odd2;
    REP(i,n) {
        if(i%2 == 0) {
            even1 += s1[i];
            even2 += s2[i];
        } else {
            odd1 += s1[i];
            odd2 += s2[i];
        }
    }  
    cout << ((matched(even1, even2) && matched(odd1, odd2)) ? "TAK" : "NIE") << endl;
    return 0;
}