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>
#include <stack>
#include <algorithm>

using namespace std;
int main(){
    int l,t;
    cin>>l;
    if(l!=0){
        char c;
        bool ok=true;
        stack <char> stos;
        t=l%2;
        l=(l-t)/2;
        for(int i=0;i<l;i++){
            cin>>c;
            stos.push(c);
        }
        if(t==1)cin>>c;
        while(ok==true && l>0){
            cin>>c;
            ok=(c==stos.top());
            stos.pop();
            l--;
        }
        if(ok==true){
            cout<<"TAK";
        }else{
            cout<<"NIE";
        }
    }else{
       string s;
       cin>>s;
       string b=s;
       reverse(b.begin(),b.end());
       if(s==b){
            cout<<"TAK";
        }else{
            cout<<"NIE";
        }
    }
}