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
38
39
40
41
42
43
44
45
#include <bits/stdc++.h>
using namespace std;
typedef long long lld;
typedef pair<int,int> pii;
typedef pair<lld,lld> pll;
typedef vector<int> vint;
#define ff first
#define ss second
#define mp make_pair
#define pb push_back

char p[300099];
char q[300099];
int n;
int t[32][2];


int main(){
	scanf("%d",&n);
	scanf(" %s",p);
	scanf(" %s",q);
	for(int i=0;i<n;++i){
		++t[p[i]-'a'][i&1];
		--t[q[i]-'a'][i&1];
	}
	for(int i=0;i<='z'-'a';++i){
		if(t[i][0]!=0 or t[i][1]!=0){
			puts("NIE");
			exit(0);
		}
	}
	puts("TAK");
	
	return 0;
}
/*
7
abcdefg
edgbcfa

5
abcde
fghhh

*/