Skip to content

Commit 1af802a

Browse files
committed
[feat] 백준 string 10988
1 parent c4ce633 commit 1af802a

File tree

1 file changed

+9
-0
lines changed

1 file changed

+9
-0
lines changed

WooEong/string/10988.py

+9
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,9 @@
1+
import sys
2+
input = sys.stdin.readline
3+
4+
inputstring = input().strip()
5+
6+
if(inputstring==inputstring[::-1]):
7+
print(1)
8+
else:
9+
print(0)

0 commit comments

Comments
 (0)