#include <stdio.h>

void gaussj(float a[3][3], int n, float b[3][2], int m);

void main() {
	float x[3][3];
	float y[3][2];

	x[1][1] = 1;
	x[1][2] = 1;
	x[2][1] = 1;
	x[2][2] = -1;
	y[1][1] = 7;
	y[2][1] = 1;
	gaussj(x, 2, y, 1);
	fprintf(stderr, "%f %f   %f\n", x[1][1], x[1][2], y[1][1]);
	fprintf(stderr, "%f %f   %f\n", x[2][1], x[2][2], y[2][1]);
}