#include <iostream>
#include "Cercle.h"

using namespace std;

int main()
{
	Cercle c1(1, 2, 3);
	Cercle c3;

	Point p;
	Cercle c2(5, p);

	cout << c2.getCentre().getAbs() << endl;



	system("pause");
	return 0;
}