#C1329. Palindromic String Checker

    ID: 42811 Type: Default 1000ms 256MiB

Palindromic String Checker

Palindromic String Checker

Given a string, determine whether it is a palindrome, ignoring case sensitivity. A palindrome is a sequence that reads the same backward as forward.

For example, the string Racecar\texttt{Racecar} is a palindrome, while Hello\texttt{Hello} is not. Your task is to implement a function that checks whether the input string is a palindrome after converting all characters to lowercase.

inputFormat

Input is given via standard input (stdin). The input consists of a single line containing a non-empty string S made up of alphabetical characters.

outputFormat

Output either 'True' or 'False' (without quotes) to standard output (stdout), indicating whether the input string is a palindrome ignoring case sensitivity.## sample

Racecar
True

</p>