#include <CGAL/Simple_cartesian.h>
#include <CGAL/Surface_mesh.h>
#include <CGAL/Polygon_mesh_processing/IO/polygon_mesh_io.h>
#include <iostream>
#include <fstream>
int main(int argc, char* argv[]) {
Surface_mesh mesh;
{
std::cerr << "Invalid input." << std::endl;
return 1;
}
std::ofstream out("out.off");
out << mesh;
return 0;
}