본문 바로가기

Programming [Python]/백준 알고리즘 솔루션

#184 백준 파이썬 [10988] 팰린드롬인지 확인하기

https://www.acmicpc.net/problem/10988

 

#Solution

word = list(str(input()))

if list(reversed(word)) == word:
    print(1)
else:
    print(0)