1
 2
 3
 4
 5
 6
 7
 8
 9
10
11
12
13
14
15
16
17
18
19
20
21
22
#include<bits/stdc++.h>
using namespace std;

int n;
string s;

int main( )
{
  cin>>n>>s;
  int j=s.size()-1;
  for( int i=0; i<s.size()/2; i++ )
  {
    if( s[i]!=s[j] )
    {
      cout<<"NIE \n";
      return 0;
    }
    j--;
  }
  cout<<"TAK \n";

}