diff --git a/lab2/cse16259_e2_4.py b/lab2/cse16259_e2_4.py new file mode 100644 index 0000000000000000000000000000000000000000..6aaa499b9767770af416408549155e7d90763c39 --- /dev/null +++ b/lab2/cse16259_e2_4.py @@ -0,0 +1,5 @@ +string = input() +h=string[0] +string = string.replace(h,'$') +string = h+string[1:] +print(string) \ No newline at end of file