double avg1(std::vector<int> const& v) { return 1.0 * std::accumulate(v.begin(), v.end(), 0LL) / v.size(); }