#include <iostream>
using namespace std;
int main() {
string input;
while(cin>>input){
int count=0;//紀錄不符合次數
for(int i = 0;i < input.length();i++){
if(input[i]==input[input.length()-i-1]){
continue;
}
else{
count++;
break;
}
}
if(count==0){
cout<<"yes"<<endl;
}else{
cout<<"no"<<endl;
}
}
}