Inicio: 25/03/18 Fim: 02/04/18
Objetivo desse desafio é descobrir se um numero é primo ou não. Alguns algoritmos de primality são Fermat,AKS, Sieve of Erastosthenes
Input: Numero inteiro Output: Bool(Se é primo ou não)
Input: 0 Output: false
Input: 1 Output: false
Input: 2 Output: true
Input: 3 Output: true
Input: 79 Output: true
Input: 1471 Output: true
Input: 104742 Output: false
Input: 104743 Output: true