int a[11][11]; for (int i=0; i<=10; i=i+1) { for(int j=0; j<=10; j=j+1) { a[i][j] = i * j; } } print(a[2][8]);