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
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
#include<bits/stdc++.h>

using namespace std;

int a[27][2];
int b[27][2];

bool wynik()
{
    for(int i=0;i<2;i++)
    {
        for(int j=0;j<26;j++)
        {
            if(a[j][i]!=b[j][i])
            {
                return false;
            }
        }
    }
    
    return true;
}

int main()
{
    ios_base::sync_with_stdio(false);
    cin.tie(0);
    
    int n;
    cin>>n;
    
    string p;
    
    int asdf;
    
    cin>>p;
    
    for(int i=1;i<n+1;i++)
    {
        asdf = p[i-1] - 'a';
        if(i%2==1)
        {
            a[asdf][1]++;
        }
        else
        {
            a[asdf][0]++;
        }
    }
    
    cin>>p;
    
    for(int i=1;i<n+1;i++)
    {
        asdf = p[i-1] - 'a';
        if(i%2==1)
        {
            b[asdf][1]++;
        }
        else
        {
            b[asdf][0]++;
        }
    }
    
    bool czy = wynik();
    
    if(czy==true)
    {
        cout<<"TAK"<<endl;
    }
    else
    {
        cout<<"NIE"<<endl;
    }
    
    return 0;
}