func int main() {
  matrix a <2,2>;
  matrix b <3,3>;
  print(a+b);
  return 0;
}