The document describes an algorithm for multiplying two n x n matrices on a 2D mesh parallel computing model. It involves initially staggering the two matrices across the processors in n-1 steps. It then performs a dot product computation of corresponding elements across all processor pairs to calculate the product matrix. This takes advantage of the parallelism available in the mesh to perform the multiplication in O(n) time using n^2 processors.