Problem1714--对称字符串

1714: 对称字符串

[Creator : ]
Time Limit : 1.000 sec  Memory Limit : 128 MiB

Description

对称字符串的特征是从左到右读和从右到左读是完全一样的,如"kbdhhdbk",编写程序判断一个字符串是否对称

Input

一个字符串

Output

对称 或 不对称

Sample Input Copy

aba

Sample Output Copy

对称

Source/Category