Write a program to display all the proper divisors of each one of the numbers in a range of integers given by the first and last values of the range.
The proper divisors of a number n are the positive integers divisors smaller than n.
Input Two integers a, b which represent the range of the values.
Where 2 <= a < b <= 100
Output For each value in the range, the program must display the word VALUE and then the number, then in the next line the word DIVISORS followed by a blank space and then each one of the proper divisors of the number separated by a blank space, at the end there must be an end of line character.
This is what I have until now and I'm looking for a simple answer because I am a beginner