/* ex_4_3.c++ */
#include <cstdlib>
#include <iostream>
#include <personne.h>

using namespace std;

int main () {
	srand(time(NULL));
	directeur d("Toto", "Foobar", 46, SURPRISE);
	cout << d.get_identification() << endl;
	return 0;
}
