diff --git a/.idea/inspectionProfiles/Project_Default.xml b/.idea/inspectionProfiles/Project_Default.xml
index ba82553..f194748 100644
--- a/.idea/inspectionProfiles/Project_Default.xml
+++ b/.idea/inspectionProfiles/Project_Default.xml
@@ -52,6 +52,12 @@
+
+
+
+
+
+
diff --git a/.idea/workspace.xml b/.idea/workspace.xml
index 7571e8c..9b3fc30 100644
--- a/.idea/workspace.xml
+++ b/.idea/workspace.xml
@@ -1,15 +1,13 @@
-
-
-
-
-
-
-
-
-
+
+
+
+
+
+
+
@@ -22,80 +20,66 @@
-
+
-
-
+
+
-
+
-
-
+
+
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
+
-
+
-
-
-
-
-
-
-
-
-
-
+
-
+
-
+
-
-
+
+
+
+
+
+
+
+
+
+
+
-
-
+
+
+
+
+
+
@@ -121,13 +105,6 @@
-
-
-
+
+
@@ -198,12 +181,7 @@
-
-
-
-
-
-
+
@@ -245,7 +223,7 @@
-
+
@@ -268,17 +246,20 @@
-
+
+
+
+
-
+
-
+
@@ -287,17 +268,20 @@
-
+
+
+
+
-
+
-
+
@@ -306,17 +290,17 @@
-
+
-
+
-
+
@@ -325,17 +309,17 @@
-
+
-
+
-
+
@@ -344,17 +328,17 @@
-
+
-
+
-
+
@@ -365,11 +349,11 @@
-
-
-
-
-
+
+
+
+
+
@@ -388,23 +372,23 @@
-
+
-
+
-
+
-
+
-
+
@@ -422,71 +406,13 @@
-
+
+
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
@@ -766,13 +692,6 @@
-
-
-
-
-
-
-
@@ -780,8 +699,71 @@
-
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
\ No newline at end of file
diff --git a/challenges105-110/challenge-105.py b/challenges105-110/challenge-105.py
new file mode 100644
index 0000000..413e012
--- /dev/null
+++ b/challenges105-110/challenge-105.py
@@ -0,0 +1,3 @@
+file = open('Numbers.txt', 'w')
+file.write('1, 2, 3, 4, 5')
+file.close()
diff --git a/challenges105-110/challenge-106.py b/challenges105-110/challenge-106.py
new file mode 100644
index 0000000..a6323eb
--- /dev/null
+++ b/challenges105-110/challenge-106.py
@@ -0,0 +1,7 @@
+file = open('Names.txt', 'w')
+file.write('Abdullah\n')
+file.write('Ahmed\n')
+file.write('Ali\n')
+file.write('Yaser\n')
+file.write('Hasanen\n')
+file.close()
diff --git a/challenges105-110/challenge-107.py b/challenges105-110/challenge-107.py
new file mode 100644
index 0000000..3602337
--- /dev/null
+++ b/challenges105-110/challenge-107.py
@@ -0,0 +1,2 @@
+file_open = open('Names.txt', 'r')
+print(file_open.read())
diff --git a/challenges105-110/challenge-108.py b/challenges105-110/challenge-108.py
new file mode 100644
index 0000000..19c3032
--- /dev/null
+++ b/challenges105-110/challenge-108.py
@@ -0,0 +1,9 @@
+file_open = open('Names.txt', 'r')
+print(file_open.read())
+file_open.close()
+ask = str(input('Enter a name to add to file : '))
+file_write = open('Names.txt', 'a')
+file_write.write(file_write + '\n')
+file_write.close()
+file_open = open('Names.txt', 'r')
+print(file_open.read())
diff --git a/challenges105-110/challenge-109.py b/challenges105-110/challenge-109.py
new file mode 100644
index 0000000..753a025
--- /dev/null
+++ b/challenges105-110/challenge-109.py
@@ -0,0 +1,25 @@
+count = 0
+while count < 5:
+ print('1) Create a new file')
+ print('2) Display the file')
+ print('3) Add a new item to the file ')
+ selection_input = int(input('Make a selection 1, 2 or 3 : '))
+ if selection_input == 1:
+ file = open('Subject.txt', 'w')
+ subject_name = str(input('Enter school subject name : '))
+ file.write(subject_name + '\n')
+ file.close()
+ elif selection_input == 2:
+ file = open('Subject.txt', 'r')
+ print(file.read())
+ file.close()
+ elif selection_input == 3:
+ file = open('Subject.txt', 'a')
+ subject_name = str(input('Enter school subject name to add into file : '))
+ file.write(subject_name + '\n')
+ file.close()
+ count = count + 1
+
+file = open('Subject.txt', 'r')
+print(file.read())
+file.close()
diff --git a/challenges105-110/challenge-110.py b/challenges105-110/challenge-110.py
new file mode 100644
index 0000000..f321196
--- /dev/null
+++ b/challenges105-110/challenge-110.py
@@ -0,0 +1,15 @@
+file = open('Names.txt', 'r')
+print(file.read())
+file.close()
+file2 = open('Names2.txt', 'w')
+file2.close()
+ask = str(input('Enter one of names : '))
+with open('Names.txt', 'rt') as myFile:
+ for myLine in myFile:
+ if myLine != ask:
+ file2 = open('Names2.txt', 'a')
+ file2.write(myLine + '\n')
+ file2.close()
+myFile.close()
+file = open('Names2.txt', 'r')
+print(file.read())