测评会员优惠活动进行中 · 开通 VIP,有效期内测评不限次 VIP 优惠中 · 测评不限次 立即查看

A10555. s-palindrome

编程题 普及/提高-

题目描述

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.

![](/uploads/acgo/image/38a6c0e845b5d877_294449c93054.jpeg)English alphabetYou 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.

输入输出样例

输入 #1
oXoxoXo
输出 #1
TAK
输入 #2
bod
输出 #2
TAK
输入 #3
ER
输出 #3
NIE
上一题 去做题 下一题