← Back to List

13235번: 팰린드롬 ↗

Solutions

Python 3
87 B | 87 chars
a=list(input())
b=a[:]
b.reverse()
if(a==b):
    print("true")
else:
    print("false")