#include #include #include using namespace std; int main () { const int a[] { 0, //filler 0, //Jan 0, 5, //March 26, 29, //May 27, 25, //July 27, 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; }