#include <CGAL/Cartesian_d.h>
#include <iostream>
#include <cstdlib>
#include <CGAL/Random.h>
#include <CGAL/Min_sphere_annulus_d_traits_d.h>
#include <CGAL/Min_sphere_d.h>
typedef CGAL::Cartesian_d<double> K;
typedef K::Point_d Point;
const int n = 10;
const int d = 5;
int main ()
{
Point P[n];
double coord[d];
CGAL::Random r;
for (int i=0; i<n; ++i) {
for (int j=0; j<d; ++j)
coord[j] = r.get_double();
P[i] = Point(d, coord, coord+d);
}
Min_sphere ms (P, P+n);
std::cout << ms;
return 0;
}