#include<stdio.h>
#include<string.h>
int main(){
int lenth,i;char str[]={};
printf("please input the string:");
scanf("%s",str);
lenth=strlen(str);
while(i<=lenth/2){
if(str[i]==str[lenth-i-1]){
i++;
continue;
}
else
break;
}
if(i>lenth/2){
printf("yes\n");
}
else
printf("no\n");
return 0;