Hello everyone,

I'm trying to parallelize with the mpi library and c++ the internal loop of the following sequential code (sieve of eratosthenes):


int main()
{
int n = 40;
int...