#K12961. Palindrome Number Checker
Palindrome Number Checker
Palindrome Number Checker
Given a positive integer \(N\), determine whether its decimal representation is a palindrome. A number is considered a palindrome if it reads the same backward as forward. For example, 121 and 12321 are palindromic numbers, while 1234 is not.
Your program should read the input from stdin and write the result to stdout.
Note: The input number can be very large. It is recommended to handle the input as a string if necessary.
inputFormat
The input consists of a single line that contains a non-negative integer \(N\) (\(0 \leq N\)).
outputFormat
Output a single line: print "Palindrome" if \(N\) is a palindrome, otherwise print "Not Palindrome".
## sample121
Palindrome