Write a procedure (FindPrimes) that calculates the prime numbers between 2 and 1000 (inclusive).a. Use the Sieve of Eratosthenes to find all the prime numbers in this range. (lots of info online and pseudocode provided below)b. Display your results using the procedure developed in No 3. c. Simply coding an array with all the primes between 2 and 1000 (inclusive) will result ina zero grade for this portion of the assignment.