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