diabetic-eye / reverse.py
Alaa hussien
string file
2b33204
raw
history blame
71 Bytes
s="abbbcddd"
if s==s[::-1]:
print("YES")
else:
print("NO")