diff --git a/CSE16261_Ex02_05.py b/CSE16261_Ex02_05.py new file mode 100644 index 0000000000000000000000000000000000000000..acdf4714b915ba6694248e6b6a7296d489bf25b8 --- /dev/null +++ b/CSE16261_Ex02_05.py @@ -0,0 +1,4 @@ +s1=input("Enter the string1") +s2=input("Enter the string 2") +s=s2[:2]+s1[2:]+s1[:2]+s2[2:] +print(s)