File size: 71 Bytes
2b33204
 
 
 
 
1
2
3
4
5
6
s="abbbcddd"
if s==s[::-1]:
    print("YES")
else:
    print("NO")