code complexity calculator online
MysteryA (int n)
{ int i,j,k;
for i=1 to n
{ for j=1 to n
{c[i,j]=0;
}
for k=1 to n
c[i,j]=c[i,j]+a[i,k]*b[k,j];
} }