int matrix[rows][cols];
123
for(int K=0; K<rows; ++K) for(int L=0; L<cols; ++L) //operate on cell matrix[K][L]
1234567
def isprime(n): for(p in primes) if p*p > n: break if n%p==0: return false return true