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

int tab[27][2];
int tab2[27][2];

int main(){
	ios_base::sync_with_stdio(false);
	cin.tie(0);
	
	int n;
	cin >> n;
	
	string a, b;
	cin >> a >> b;
	
	for(int i = 1; i <= n; i++){
		int x = a[i - 1] - 'a' + 1;
		int y = b[i - 1] - 'a' + 1;
		tab[x][i % 2]++;
		tab2[y][i % 2]++;
	}
	
	bool tn = true;
	for(int i = 1; i <= 26; i++){
		if(tab[i][1] != tab2[i][1] || tab[i][0] != tab2[i][0]) tn = false;
	}
	
	if(tn) cout << "TAK";
	else cout << "NIE";
}