diff --git a/CSE16265_ExNo02_04.py b/CSE16265_ExNo02_04.py
new file mode 100644
index 0000000000000000000000000000000000000000..0827095a02a6d7b15326db0a63d9f0c8a66c1e9d
--- /dev/null
+++ b/CSE16265_ExNo02_04.py
@@ -0,0 +1,10 @@
+z=input()
+a=z[0]
+z=z[1:]
+print(a,end='')
+for item in z:
+	if item==a:
+		print("$ ",end='')
+	else:
+		print(item,end='')
+print()