#include "matrix.h"

int main()
{
    CMatrix a(3,4,1);
    CMatrix b = a;	

    b.Set(0,0,88);
    a.Print();
    b.Print();
    return 0;
}
