//判断回文
#include<stdio.h>
int main(){
char str[80];
int i=0;
while((str[i]=getchar())!='\n'){
i++;
}
str[i]='\0';
int head=0;
int end=i;
while(head<end){
if(str[head]!=str[end]){
break;
}
}
if(head<end){
printf("is\n");
}
else{
printf("not\n");
}
return 0;
}