Score : $200$ points
Given is an integer $N$.
Is it possible to add zero or more 0
s at the beginning of the string representing $N$ in base ten to get a palindrome?
Input is given from Standard Input in the following format:
$N$
If a palindrome can be made, print Yes
; otherwise, print No
.
1210
Yes
Adding one 0
at the beginning of 1210
results in 01210
, a palindrome.
777
Yes
777
is already a palindrome.
123456789
No