We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent c4ce633 commit 1af802aCopy full SHA for 1af802a
WooEong/string/10988.py
@@ -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