#include #include #include //From http://www.richelbilderbeek.nl/CppGetSum.htm const int GetSum(const std::vector& v) { return std::accumulate(v.begin(),v.end(),0); }