https://www.acmicpc.net/problem/10988
#Solution
word = list(str(input()))
if list(reversed(word)) == word:
print(1)
else:
print(0)
'Programming [Python] > 백준 알고리즘 솔루션' 카테고리의 다른 글
#186 백준 파이썬 [10162] 전자레인지 (0) | 2019.11.05 |
---|---|
#185 백준 파이썬 [9610] 사분면 (0) | 2019.11.05 |
#183 백준 파이썬 [5717] 상근이의 친구들 (0) | 2019.11.05 |
#182 백준 파이썬 [10886] 0 = not cute / 1 = cute (0) | 2019.11.05 |
#181 백준 파이썬 [10102] 개표 (0) | 2019.11.05 |