#include <iostream>
#include <iomanip>
using namespace std;

int main() {
	
	for (int a=1; a<=10; a++)
{
    cout << endl;
    for (int b=1; b<=10; b++)
    {
        cout << " [" << setw(3) << a*b <<"]   ";
    }
}
	// your code goes here
	return 0;
}