#include
using namespace std;
bool ispalindrome(char s[])
{
if(strlen(s)==0)
return true;
int i=0,j=strlen(s)-1;
bool flag=0;
while(i<j)
{
if(s[i++]!=s[j–])
flag=0;
}
flag=1;
return flag;
}
int main() {
char s[1000];
cin>>s;
cout<<ispalindrome(s);
}