#ifndef HISTOGRAM_H_INCLUDED
#define HISTOGRAM_H_INCLUDED
#include <vector>
void FindMinMax(const std::vector<double>& marks, double& min, double& max);
#endif // HISTOGRAM_H_INCLUDED