#include
//using namespace std;
class matrix
{
public:
matrix(){};
matrix(int array[3][3])
{
for(int i = 0; i < 3; i++)
for(int j = 0; j < 3; j++)
a[i][j] = array[i][j];
}
friend matrix operator + (matrix &,matrix &);
friend istream & operator >> (istream &input,matrix &);
friend ostream & operator m.a[i][j];
return input;
}
void main()
{
matrix m,m1,m2;
cout