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
#include <iostream>
using namespace std;
bool sprawdz(string x)
{
    int p=0;
    int q=x.size()-1;
    while(p<q)
    {
        if(x[p]!=x[q]) return false;
        p++;
        q--;
    }
    return true;
}
int main()
{
    cin.tie(0);
    cout.tie(0);
    ios_base::sync_with_stdio(0);
    string x;
    int n;
    cin >> n >> x;
    if(sprawdz(x)==true) cout << "TAK" << endl;
    else cout << "NIE" << endl;
    return 0;
}