diff --git a/CSE16261_Ex02_08.py b/CSE16261_Ex02_08.py new file mode 100644 index 0000000000000000000000000000000000000000..4130142a76ae4eadf58b73b088d3c9aafecd8406 --- /dev/null +++ b/CSE16261_Ex02_08.py @@ -0,0 +1,3 @@ +s=input("Enter a string:") +if len(s)%4==0: + print(s[::-1])