Text: Python Exercise
# Write a script called dictionaryExercise.py for the following tasks:
# 1. Ask the user for the number of students in the section and store it in a variable called N.
# 2. Get N number of student names and grades from the user and store them in a dictionary.
# 3. Add the student 'Hamad' with a grade of 58 to the dictionary.
# 4. For the students whose grade is more than 85, add a 5 mark bonus using dictionary comprehension.
# 5. List all the student names only.
# 6. Find and print the student(s) with the highest grade.