#atcoderABC070A. Palindromic Number
Palindromic Number
Problem Statement
You are given a three-digit positive integer .
Determine whether is a palindromic number.
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 is a palindromic number, print Yes
; otherwise, print No
.
Input 1
575
Output 1
Yes
is also when read backward, so it is a palindromic number. You should print Yes
.
Input 2
123
Output 2
No
becomes when read backward, so it is not a palindromic number. You should print No
.
Input 3
812
Output 3
No