#27614: __我的


40975026H (七賢)


#include<stdio.h>

#include<string.h>

#include<math.h>

int main(){

char s[1000];

int  A=0, i=0;

memset(s, '\0', strlen(s));

scanf("%s",s);

 

for(i=0;i<strlen(s);i++){

if(s[i]!=s[strlen(s)-i-1]){

A++;

}

}

if(A==0){

printf("yes");

}else{

printf("no");

}

return 0;

}