98. Suspect Code

Time Limit: 1 seconds

Memory Limit: 256 MB

Rating: 800

Problem Statement

A numeric code found at the crime scene might contain the suspect’s hideout. But it’s only valid if it reads the same forward and backward. Is the number a palindrome? Input is denoted by: $X$: an integer which could read forwards or backwards

Input

You are given an integer $X$, which consists of no more than $1{,}000$ digits.

Output

Output "true" if $X$ is a palindrome, "false" otherwise.

Sample Cases
Sample Input 1:
121

Sample Output 1:
true
Explanation

$121$ reads the same backward as forward.

Sources

KL Coding Cup March 2025 > Speed Round > Problem 3

Submit | Back