public class Matrice { static public int[][] mult(int m1[][], int m2[][]) throws Exception { if ( m1[0].length != m2.length ) throw new Exception("ratai"); int r[][] = new int[m1.length][m2[0].length]; for(int i=0; i