x=raw_input("enter the word:")
pal=True
for j in range(len(x)/2):
  if (x[j]<>x[len(x)-1-j]):
    pal=False
print "It is", pal," that ", x," is a palindrome."
