#C7823. Palindrome Checker

    ID: 51737 Type: Default 1000ms 256MiB

Palindrome Checker

Palindrome Checker

You are given a string S. Your task is to determine if the string is a palindrome. A string is considered a palindrome if it reads the same backward as forward. For example, \(S = \text{'racecar'}\) is a palindrome while \(S = \text{'abc'}\) is not.

Note that the checking is case-sensitive and an empty string is considered a palindrome.

inputFormat

A single line containing the string S. The string may include any characters and is case-sensitive. An empty string is allowed.

outputFormat

Output a single line. Print Palindrome if the string is a palindrome, otherwise print Not Palindrome.

## sample
racecar
Palindrome