diff --git a/CSE16237_Ex02_03.py b/CSE16237_Ex02_03.py new file mode 100644 index 0000000000000000000000000000000000000000..9b2e0b58af009388ec3c31ff4efd03045c73e57e --- /dev/null +++ b/CSE16237_Ex02_03.py @@ -0,0 +1,3 @@ +str=input("Enter string:") +str1=str[:2]+str[-2:] +print(str1)