diff --git a/2022-Oct/11 Oct 2022/Sai_Chouhan.py b/2022-Oct/11 Oct 2022/Sai_Chouhan.py new file mode 100644 index 0000000..4cadb14 --- /dev/null +++ b/2022-Oct/11 Oct 2022/Sai_Chouhan.py @@ -0,0 +1,8 @@ +s = input() +li = s.split(" ") +count = 0 +for i in range(len(li)): + if li[i] == li[i][::-1]: + count += 1 + +print(count) \ No newline at end of file