-- This test purposely has an error. Variable c is not declared. 
-- Your compiler should report this error. Preferably just once, but that is hard.

integer a, b;

BEGIN
	READ a, b;
	WRITE a, b;
	WRITE a, b, c;
	WRITE a+b, a - 20, b - 30, c, (a - b);
END.

