#include #include #include using namespace std; int main() {         const int a[] {                 0, //filler                 0, //Jan                 0, //Feb                 5, //March                 26, //April                 29, //May                 27, //June                 26, //July                 27, //Aug                 23, //Sep                 0,                 0,                 0 };         const int sum {accumulate(begin(a), end(a), 0)};         cout << "The Yankees play " << sum << " regular season games in 2026. \n";         return EXIT_SUCCESS; }