Вы не можете выбрать более 25 тем Темы должны начинаться с буквы или цифры, могут содержать дефисы(-) и должны содержать не более 35 символов.

13 строки
291 B
C++

#include "histogram.h"
#include "svg.h"
#include <sstream>
#include <curl/curl.h>
int main() {
curl_global_init(CURL_GLOBAL_ALL);
auto in = input_data(std::cin, true);
auto bins = make_histogram(in.numbers, in.bin_count);
show_histogram_svg(bins, in.width);
return 0;
}