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
#include <bits/stdc++.h>
#define magiczne ios_base::sync_with_stdio(0);
#define linijki cin.tie(NULL);

using namespace std;

int lit[26][4];

int main()
{
    magiczne linijki
	int n;
	cin>>n;
	string a, b;
	cin>>a>>b;
	for(int c=0;c<n;c++)
	{
		if(c%2==0)
		{
			lit[a[c]-'a'][0]++;
			lit[b[c]-'a'][1]++;
		}
		else
		{
			lit[a[c]-'a'][2]++;
			lit[b[c]-'a'][3]++;
		}
	}
	for(int c=0;c<26;c++)
	{
		if(lit[c][0]!=lit[c][1] || lit[c][2]!=lit[c][3])
		{
			cout<<"NIE";
			return 0;
		}
	}
	cout<<"TAK";
    return 0;
}