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
 79
 80
 81
 82
 83
 84
 85
 86
 87
 88
 89
 90
 91
 92
 93
 94
 95
 96
 97
 98
 99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
#include <iostream>

using namespace std;

int idx(char letter){
    int index;

    if(letter=='a'){
        index=0;
    }
    else if(letter=='b'){
        index=1;
    }
    else if(letter=='c'){
        index=2;
    }
    else if(letter=='d'){
        index=3;
    }
    else if(letter=='e'){
        index=4;
    }
    else if(letter=='f'){
        index=5;
    }
    else if(letter=='g'){
        index=6;
    }
    else if(letter=='h'){
        index=7;
    }
    else if(letter=='i'){
        index=8;
    }
    else if(letter=='j'){
        index=9;
    }
    else if(letter=='k'){
        index=10;
    }
    else if(letter=='l'){
        index=11;
    }
    else if(letter=='m'){
        index=12;
    }
    else if(letter=='n'){
        index=13;
    }
    else if(letter=='o'){
        index=14;
    }
    else if(letter=='p'){
        index=15;
    }
    else if(letter=='q'){
        index=16;
    }
    else if(letter=='r'){
        index=17;
    }
    else if(letter=='s'){
        index=18;
    }
    else if(letter=='t'){
        index=19;
    }
    else if(letter=='u'){
        index=20;
    }
    else if(letter=='v'){
        index=21;
    }
    else if(letter=='w'){
        index=22;
    }
    else if(letter=='x'){
        index=23;
    }
    else if(letter=='y'){
        index=24;
    }
    else if(letter=='z'){
        index=25;
    }

    return index;
}

int main(){
    int n;

    cin>>n;

    int P1[26];
    int N1[26];
    int P2[26];
    int N2[26];

    for(int i=0; i<26; i++){
        P1[i]=0;
        N1[i]=0;
        P2[i]=0;
        N2[i]=0;
    }

    string first, second;

    cin>>first>>second;

    for(int i=0; i<n; i++){
        if(i%2 == 1) continue;
        char letter = first[i];
        int index = idx(letter);
        P1[index]++;

        letter = second[i];
        index = idx(letter);
        
        P2[index]++;
    }

    for(int i=0; i<n; i++){
        if(i%2 == 0) continue;
        char letter = first[i];
        int index = idx(letter);
        
        N1[index]++;

        letter = second[i];
        index = idx(letter);
        
        N2[index]++;
    }

    for(int i=0; i<26; i++){
        if(P1[i] != P2[i] || N1[i] != N2[i]){
            cout<<"NIE";
            return 0;
        }
    }


    cout<<"TAK";
    return 0;
}