#include <iostream>

#define Dbg(var) #var<<'='<<var<<';'

int main()
  {
   Macierz B(3,3),A(B);
   for(unsigned y=0;y<A.Row();++y)
     {
      for(unsigned x=0;x<A.Col();++x)
        {
         A[y][x]=3+4*y+x;
        }
     }
   cout<<Dbg(A)<<endl;
   const Macierz M=A;
   cout<<Dbg(M)<<endl;
   B=A+M;
   cout<<Dbg(B)<<endl;
   B(4,4);
   cout<<Dbg(B)<<endl;
   cin.get();
   return 0;
  }

