#include #include using std::size_t; std::vector get_column(std::vector> input, int index){ std::vector result; for(int i = 0; i first, std::vector second){ int result = 0; for(int i = 0; i> matrix_multiplication(std::vector> &a, std::vector> &b, size_t n){ std::vector> result; std::vector row; for(int i=0; i> test1 = {{1,2},{3,4}}; std::vector> test2 = {{1,2},{3,4}}; std::vector> result = matrix_multiplication(test1, test2, 2); std::cout << result[1][1]; }