#include #include using namespace std; void svg_begin(double width, double height) { cout << "\n"; cout << "\n"; } void svg_end() { cout << "\n"; } void show_histogram_svg(const vector & bins) { svg_begin(400, 300); svg_end(); }