import java.applet.Applet;

public class dim2 extends Applet  {
   public void start() {
      int[][] t = new int[2][];
      t[0] = new int[2];
      t[1] = new int[3];
      t[0][0] = 0;
      t[0][1] = 1;
      t[1][0] = 10;
      t[1][1] = 11;
      t[1][2] = 12;
   }
}

