#pragma once #include struct Input { std::vector numbers; size_t bin_count{}; }; Input input_data(); std::vector make_histogram(const std::vector& numbers, size_t bin_count); void show_histogram_text(const std::vector& bins);