Problem Statement
You are given a three-digit positive integer
Determine whether
Here, a palindromic number is an integer that reads the same backward as forward in decimal notation.
Constraints
is an integer.
Input
Input is given from Standard Input in the following format:
Output
If Yes
; otherwise, print No
.
Sample Input 1
Copy
575
Sample Output 1
Copy
Yes
Yes
.
Sample Input 2
Copy
123
Sample Output 2
Copy
No
No
.
Sample Input 3
Copy
812
Sample Output 3
Copy
No
Comments