#abc237c. [abc237_c]kasaka
[abc237_c]kasaka
Problem Statement
Given is a string consisting of lowercase English letters. Determine whether adding some number of a
's (possibly zero) at the beginning of can make it a palindrome.
Here, a string of length , , is said to be a palindrome when for every .
Constraints
- consists of lowercase English letters.
Input
Input is given from Standard Input in the following format:
Output
If adding some number of a
's (possibly zero) at the beginning of can make it a palindrome, print Yes
; otherwise, print No
.
Sample Input 1
kasaka
Sample Output 1
Yes
By adding one a
at the beginning of kasaka
, we have akasaka
, which is a palindrome, so Yes
should be printed.
Sample Input 2
atcoder
Sample Output 2
No
Adding any number of a
's at the beginning of atcoder
does not make it a palindrome.
Sample Input 3
php
Sample Output 3
Yes
php
itself is a palindrome. Adding zero a
's at the beginning of is allowed, so Yes
should be printed.