using System;
public class Program
{
public static void Main()
string text = Console.ReadLine();
int length = text.Length;
bool flag=true;
int i = 0;
while (flag==true)
if (text[i] != text[length - 1 - i])
flag = false;
}
i++;
if (flag==true)
Console.WriteLine("True");
else Console.WriteLine("False");