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

using namespace std;

int t[50], t2[50];

int main()
{
	int n;
	cin>>n;
	string s1, s2;
	cin>>s1>>s2;
	for(int i=0; i<n; i+=2)
	{
		++t[s1[i]-'a'];
		--t[s2[i]-'a'];
	}
	for(int i=1; i<n; i+=2)
	{
		++t2[s1[i]-'a'];
		--t2[s2[i]-'a'];
	}
	for(int i=0; i<30; ++i)
	{
		if(t[i]!=0||t2[i]!=0)
		{
			cout<<"NIE\n";
			return 0;
		}
	}
	cout<<"TAK\n";
	return 0;
}