diff --git a/lab2/cse16259_e2_5.py b/lab2/cse16259_e2_5.py new file mode 100644 index 0000000000000000000000000000000000000000..b41a5259dc93f8f4ac28d3c8c34c09a9f1e18fd6 --- /dev/null +++ b/lab2/cse16259_e2_5.py @@ -0,0 +1,3 @@ +string1 = input('Enter first:') +string2 = input('Enter second:') +print(string2[:2]+string1[2:],' ',string1[:2]+string2[2:]) \ No newline at end of file