Application that returns the divisors of a number and the prime numbers between these divisors
- Given an input number, the program must calculate all the divisors that make up the number.
 - Given an input number, the program must calculate all the prime divisors that make up the number.
 
Console Example:
- Enter a number: 45
 
After the user enters the number, Console can show:
- Entry Number: 45
 - Divisor numbers: 1 3 5 9 15 45
 - Prime Dividers: 3 5
 
Was made:
- Clean Architecture
 - Class Library
 - Console Application
 - Web API
 - Unitary tests
 - Docker container