#include <iostream> using namespace std; int main() { ios_base::sync_with_stdio(false); int n; string a; bool test=true; cin>>n; cin>>a; for(int i=0;i<a.size()/2&&test;++i)if(a[i]!=a[a.size()-i-1])test=false; if(test)cout<<"TAK"; else cout<<"NIE"; return 0; }
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 | #include <iostream> using namespace std; int main() { ios_base::sync_with_stdio(false); int n; string a; bool test=true; cin>>n; cin>>a; for(int i=0;i<a.size()/2&&test;++i)if(a[i]!=a[a.size()-i-1])test=false; if(test)cout<<"TAK"; else cout<<"NIE"; return 0; } |