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

int main()
{
	int n;
	scanf(" %d", &n);
	char* A1 = new char[n];
	char* A2 = new char[n];
	for (int i = 0; i < n; i++)
	{
		scanf(" %1c", &A1[i]);
		for (int x = i; x > 0; x--)
		{
			if (A1[x] < A1[x - 1])
				swap(A1[x], A1[x - 1]);
			else
				break;
		}
	}
	for (int i = 0; i < n; i++)
	{
		scanf(" %1c", &A2[i]);
		for (int x = i; x > 0; x--)
		{
			if (A2[x] < A2[x - 1])
				swap(A2[x], A2[x - 1]);
			else
				break;
		}
	}
	for (int i = 0; i < n; i++)
	{
		if (A1[i] != A2[i])
		{
			printf("NIE\n");
			return 0;
		}
	}
	printf("TAK\n");
	return 0;
}