- Prompt the user to input two numbers representing the start and end of the range.
- Identify and separate the prime and non-prime numbers within the specified range.
- Store the prime numbers and non-prime numbers in separate lists.
- Display the results in a clear and user-friendly format.
- If no prime or non-prime numbers are found within the range, display an appropriate message such as "Not Found!".
Hint:
Use a list to store prime numbers and another list for non-prime numbers, and then print them out after processing the range.