#include <array>

typedef std::array<std::array<int, 3>, 5> array2d; 

int main()
{
    array2d arr = {2,7,5,  3,1,1,  2,1,-7,  0,2,1,  1,6,8};
}
