Short Python Code for 20 pts.
Get a positive integer from the user, and check to see if that number is or is not divisible by 5 random integers (from 1 - 10). If the user typed in a negative number - do nothing, however if they did type a positive number, report back to the user if their number is divisible by the 5 random numbers generated.
**HINT: You need to use modulus (%) for the project**
Example output of program:
10 is divisible by 2
10 is not divisible by 6
10 is not divisible by 4
10 is divisible by 2
10 is divisible by 1