class BianLi
{
public static void main(String[] args)
{
int[][]arr = new int[][]{{8,5,0,1,3},{3,2,3,9},{10,11,4,8},{1,4,1}};
System.out.print("[");
for (int x = 0;x<arr.length ;x++ )
{
System.out.print("[");
for (int y = 0;y<arr[x].length ;y++ )
{
if (y!=arr[x].length-1)
{
System.out.print(arr[x][y]+";");
}
else
System.out.print(arr[x][y]+"]");
}
if (x!=arr.length-1)