#include "iostream.h"
#include "conio.h"
#include "iomanip.h"
#include "stdlib.h"
const int Max=10;
class ang
{
private:
int baris;
int kolom;
float data[Max][Max];
public:
ang();
void input();
void output();
ang operator + (ang);
ang operator - (ang);
ang operator * (ang);
};