Write a program in Python that asks the user to enter ten integers of their choice and
return them a dictionary whose keys are the integers entered and whose values are
the lists of divisors of the numbers entered. Example if the user enters the numbers:
2, 7, 11, 5, 3, 19, 14, 9, 1, 4, the program returns the dictionary:
d = {2: [1,2], 7: [1,7], 14: [1,2,7,14],
9: [1,3,9], 11: [1,11], 5: [1,5],
3: [1,3], 19: [1,19], 1: [1], 4: [1,2,4]}
Hints:
Two functions and a Print statement
# create an empty dictionary which will receive the values of typed integers
# create a function that find the list of divisor for given integer
# display generated dictionary d GIVEN BELOW
print("The dictionary is: d = ", d)