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

