100700: [AtCoder]ABC070 A - Palindromic Number

Memory Limit:256 MB Time Limit:2 S
Judge Style:Text Compare Creator:
Submit:0 Solved:0

Description

Score : $100$ points

Problem Statement

You are given a three-digit positive integer $N$.
Determine whether $N$ is a palindromic number.
Here, a palindromic number is an integer that reads the same backward as forward in decimal notation.

Constraints

  • $100≤N≤999$
  • $N$ is an integer.

Input

Input is given from Standard Input in the following format:

$N$

Output

If $N$ is a palindromic number, print Yes; otherwise, print No.


Sample Input 1

575

Sample Output 1

Yes

$N=575$ is also $575$ when read backward, so it is a palindromic number. You should print Yes.


Sample Input 2

123

Sample Output 2

No

$N=123$ becomes $321$ when read backward, so it is not a palindromic number. You should print No.


Sample Input 3

812

Sample Output 3

No

Input

题意翻译

给定一个 $100\sim 999$ 的数,若百位和个位相同,则输出 `Yes`,否则输出 `No`。 感谢 @da32s1da 提供的翻译

加入题单

算法标签: