#include <vector>
#include <iostream>
using namespace std;
int main()
{
vector<int> array { 8, 4, 1, 6, -5, -1 };
cout << "The length is: " << array.size() << '\n';
for (auto const &element: array)
cout << element << ' ';
return 0;
}