#include <iostream>
using namespace std;
int** DATA = new int*[10]; // This has now got 10x0
int main() {
	
	for(unsigned i=0; (i < 10); i++)
	{
		DATA[i] = new int[5];
		
		for(unsigned j=0; (j < 5); j++)
		{
			DATA[i][j] = i*j; 
			
			std::cout << DATA[i][j] << ' ';
		}
		std::cout << std::endl;
	}
	
	
	
	return 0;
}