Print a multiplication table of first N prime numbers. The first row and column of the table should have the N primes, with each cell containing the product of the primes for the corresponding row and column.
##Steps to setup:
Install JDK 8
##Steps to run:
Windows: gradlew.bat run -Pappargs=[number of prime numbers to be generated]
Unix: ./gradlew run -Pappargs=[number of prime numbers to be generated]
Omitting the -Pappargs switch will generate 10 prime numbers.