diff --git a/.idea/inspectionProfiles/Project_Default.xml b/.idea/inspectionProfiles/Project_Default.xml
index e251270..0f747e6 100644
--- a/.idea/inspectionProfiles/Project_Default.xml
+++ b/.idea/inspectionProfiles/Project_Default.xml
@@ -36,6 +36,8 @@
+
+
diff --git a/.idea/workspace.xml b/.idea/workspace.xml
index c11c03d..1dfba35 100644
--- a/.idea/workspace.xml
+++ b/.idea/workspace.xml
@@ -2,8 +2,14 @@
-
-
+
+
+
+
+
+
+
+
@@ -16,37 +22,73 @@
-
+
-
-
+
+
-
+
-
-
+
+
-
+
-
-
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
-
+
-
+
@@ -105,6 +147,14 @@
+
+
+
+
+
+
+
+
@@ -121,7 +171,6 @@
-
@@ -132,12 +181,13 @@
-
+
+
@@ -172,7 +222,7 @@
-
+
@@ -195,20 +245,17 @@
-
+
-
-
-
-
+
-
+
@@ -217,20 +264,17 @@
-
+
-
-
-
-
+
-
+
@@ -239,20 +283,17 @@
-
+
-
-
-
-
+
-
+
@@ -261,17 +302,17 @@
-
+
-
+
-
+
@@ -280,17 +321,17 @@
-
+
-
+
-
+
@@ -301,11 +342,11 @@
-
-
-
-
-
+
+
+
+
+
@@ -327,7 +368,7 @@
-
+
@@ -340,7 +381,7 @@
-
+
@@ -355,7 +396,8 @@
-
+
+
@@ -650,9 +692,65 @@
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
-
+
diff --git a/challenges80-87/challenge-080.py b/challenges80-87/challenge-080.py
new file mode 100644
index 0000000..2d47077
--- /dev/null
+++ b/challenges80-87/challenge-080.py
@@ -0,0 +1,5 @@
+first_name = str(input('Enter your first name : '))
+print('Your first name length is {0}'.format(len(first_name)))
+sure_name = str(input('Enter your sure name : '))
+print('Your surname length is {0}'.format(len(sure_name)))
+print('{0} {1} name length is {2}'.format(first_name, sure_name, len(first_name+' '+sure_name)))
diff --git a/challenges80-87/challenge-081.py b/challenges80-87/challenge-081.py
new file mode 100644
index 0000000..60700c4
--- /dev/null
+++ b/challenges80-87/challenge-081.py
@@ -0,0 +1,3 @@
+school_subject = str(input('Enter your favourite school subject? : '))
+for i in school_subject:
+ print(i)
diff --git a/challenges80-87/challenge-082.py b/challenges80-87/challenge-082.py
new file mode 100644
index 0000000..1ca1b67
--- /dev/null
+++ b/challenges80-87/challenge-082.py
@@ -0,0 +1,5 @@
+poem = 'Here we stand, and still we fight until we won'
+print(poem)
+start_point = int(input('Enter start point in this poem : '))
+end_point = int(input('Enter end point in this poem : '))
+print(poem[start_point: end_point])
diff --git a/challenges80-87/challenge-083.py b/challenges80-87/challenge-083.py
new file mode 100644
index 0000000..50bd8d8
--- /dev/null
+++ b/challenges80-87/challenge-083.py
@@ -0,0 +1,8 @@
+string = str(input('Please enter word in upper case ? '))
+is_upper = False
+while not is_upper:
+ if string.isupper():
+ is_upper = True
+ else:
+ string = str(input('Sorry not all in upper case, please enter word in upper case ? '))
+print(string)
diff --git a/challenges80-87/challenge-084.py b/challenges80-87/challenge-084.py
new file mode 100644
index 0000000..01969eb
--- /dev/null
+++ b/challenges80-87/challenge-084.py
@@ -0,0 +1,2 @@
+post_code = str(input('Enter your postcode'))
+print(post_code[0:2])
diff --git a/challenges80-87/challenge-085.py b/challenges80-87/challenge-085.py
new file mode 100644
index 0000000..32200ba
--- /dev/null
+++ b/challenges80-87/challenge-085.py
@@ -0,0 +1,7 @@
+name = str(input('Enter your name ? : '))
+vowel = ['a', 'i', 'e' 'o', 'u']
+count = 0
+for i in name:
+ if i.lower() in vowel:
+ count = count + 1
+print('the number of vowels in your name {0}'.format(count))
diff --git a/challenges80-87/challenge-086.py b/challenges80-87/challenge-086.py
new file mode 100644
index 0000000..10a95f6
--- /dev/null
+++ b/challenges80-87/challenge-086.py
@@ -0,0 +1,8 @@
+password = str(input('Enter password : '))
+re_password = str(input('Re-enter password : '))
+if password == re_password:
+ print('Thank you')
+elif password != re_password:
+ print('They must be in the same case')
+else:
+ print('Incorrect')
diff --git a/challenges80-87/challenge-087.py b/challenges80-87/challenge-087.py
new file mode 100644
index 0000000..8413c17
--- /dev/null
+++ b/challenges80-87/challenge-087.py
@@ -0,0 +1,9 @@
+string = str(input('Enter a word : '))
+length = len(string)
+count = 1
+for i in string:
+ position = length - count
+ letter = string[position]
+ print(letter)
+ count = count + 1
+# easy way is type string[::-1]