#include <iostream>
#include <array>
using std::cout;
using std::endl;
using std::array;
int main()
{
array<int, 5> arr = { 45, 32, 54, 21, 9 };
for (auto & element : arr)
{
cout << element << ", ";
}
cout << endl;
return 0;
}
/*
run:
45, 32, 54, 21, 9,
*/