Palindromic String (Hakerearth)

You have been given a String S. You need to find and print whether this string is a palindrome or not. If yes, print "YES" (without quotes), else print "NO" (without quotes).

Input Format
The first and only line of input contains the String S. The String shall consist of lowercase English alphabets only.

Output Format
Print the required answer on a single line.

Constraints 1|S|100

Note
String S consists of lowercase English Alphabets only.

SAMPLE INPUT
 
aba
SAMPLE OUTPUT
 
YES
Solution:
n = input()
if n== n[::-1]:
print('YES')
else:
print('NO')

Comments

Popular posts from this blog

Sort in specific order (GFG)

Chef and Remissness Problem Code: REMISS (CodeChef)

Short Notes Of computer Network