diff --git a/Pre-Processing/Algorithms/requirements.txt b/Pre-Processing/Algorithms/requirements.txt
deleted file mode 100644
index a11ef2f..0000000
--- a/Pre-Processing/Algorithms/requirements.txt
+++ /dev/null
@@ -1,2 +0,0 @@
-pandas
-numpy
\ No newline at end of file
diff --git a/Pre-Processing/README.md b/Pre-Processing/README.md
new file mode 100644
index 0000000..dd6ecd2
--- /dev/null
+++ b/Pre-Processing/README.md
@@ -0,0 +1,34 @@
+
Hey <ππππππ/>! π
+
+## Available Algorithms
+
+- A diverse collection of algorithms, each with clear explanations, test cases and practical examples.
+
+| S.No | Algorithm | S.No. | Algorithm | S.No. | Algorithm |
+|-------|-----------------|-------|----------------|-------|------------------|
+| 1 | Standard Scaler | 2 | Min Max Scaler | 3 | Ordinal Encoder |
+| 4 | | 5 | | 6 | |
+
+## Available Documentations
+
+- Detailed guides and tutorials on various topics. These resources are designed to assist both beginners and advanced learners in understanding complex concepts and implementing AI solutions.
+
+| S.No | Documentation | S.No | Documentation | S.No | Documentation |
+|-------|-----------------|-------|-----------------|------|-----------------|
+| 1 | Standard Scaler | 2 | Min Max Scaler | 3 | Ordinal Encoder |
+| 4 | | 5 | | 6 | |
+
+## Available Projects
+
+- A variety of projects to demonstrate real-world applications of AI algorithms. These projects include datasets, code, and step-by-step explanations to help users apply their knowledge and develop practical skills.
+
+| S.No | Project | S.No | Project | S.No | Project |
+|-------|---------|-------|---------|------|---------|
+| 1 | | 2 | | 3 | |
+| 4 | | 5 | | 6 | |
+
+
+
+
Show some β€οΈ by π this repository!
+
+
diff --git "a/Python-Scripts/Practice Problems/Python Programs on Math Functions/Python Program to Form an Integer that has the Number of Digits at Ten\342\200\231s Place and the Least Significant Digit of the Entered Integer at One\342\200\231s Place.py" "b/Python-Scripts/Practice Problems/Python Programs on Math Functions/Python Program to Form an Integer that has the Number of Digits at Ten\342\200\231s Place and the Least Significant Digit of the Entered Integer at One\342\200\231s Place.py"
new file mode 100644
index 0000000..70b782c
--- /dev/null
+++ "b/Python-Scripts/Practice Problems/Python Programs on Math Functions/Python Program to Form an Integer that has the Number of Digits at Ten\342\200\231s Place and the Least Significant Digit of the Entered Integer at One\342\200\231s Place.py"
@@ -0,0 +1,13 @@
+# Python Program to Form an Integer that has the Number of Digits at Tenβs Place and the Least Significant Digit of the Entered Integer at Oneβs Place
+
+n = int(input("\nEnter A Number: "))
+
+if(n>0):
+ l = int(len(str(n)))
+ s = n%10
+
+else:
+ l = int(len(str(-1*n)))
+ s = (-1*n)%10
+
+print(f"\nRequired Number is: {(l*10)+s}\n")