#include <iostream>
#include "Personne.h"
#include "Personne2.h"

using namespace std;

int main()
{
	Personne2 p1, p2("tata", "tatap", 30);

	Personne2 p3(p2);

	p1.afficher();
	p2.afficher();
	p3.afficher();

	system("pause");
	return 0;
}