Description: Displays all prime numbers from 1 to 10000
Program Purpose:
Write a program that uses two nested for loops and the modulus operator (%) to detect and print the prime numbers from 1 to 10,000. (Prime numbers are natural numbers that are not evenly divisible by any other number except for themselves and one). Display all the primes found
Discussion:
The program uses two for loops and a modulus operator to find the prime numbers from 1 to 10000