#C1329. Palindromic String Checker
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 is a palindrome, while 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>