#ifndef AUTO_H
#define AUTO_H 1
#include <iostream.h>
const int LMODEL=10;
const int LNUMBER=7;
class automobile
{
				char model[LMODEL];
				char number[LNUMBER];
		public:
				automobile();
				automobile(char*,char*);
				automobile(const automobile&);
		  ~automobile(){};
				automobile& operator = (const automobile&);
				friend ostream& operator << (ostream&, const automobile&);
				friend istream& operator >> (istream&, automobile&);
	  			char*GetModel();
     			char*GetNumber();
};
#endif