interface Mat{ Matrix add(Matrix B); Matrix subtract(Matrix B); Matrix multiply(Matrix B); Matrix transpose(); double max(); double min(); }