Let's call a string "s-palindrome" if it is symmetric about the middle of the string. For example, the string "oHo" is "s-palindrome", but the string "aa" is not. The string "aa" is not "s-palindrome", because the second half of it is not a mirror reflection of the first half.
English alphabet You are given a string s. Check if the string is "s-palindrome".
The only line contains the string s (1≤|s|≤1000) which consists of only English letters.
Print "TAK" if the string s is "s-palindrome" and "NIE" otherwise.
oXoxoXo
TAK
bod
TAK
ER
NIE
| 难度等级: | 2 |
| 总通过次数: | 1 |
| 总提交次数: | 3 |