Name: CS 1510 Design Document for program prime.py General Description: Figures out if a number entered is prime. Inputs: A positive integer > 1. Algorithm: For each divisor from 2 to number-1 Try to divide number by divisor If it is evenly divisible print "not prime" quit the loop Else, if it isn't evenly divisible Go on and try the next divisor If no divisor ever divides number evenly print "is prime" Outputs: A message stating if the number is prime or is not prime.