BEGIN
INTEGER PROCEDURE multiply(x, y);
INTEGER x, y;
multiply := x * y
END;
Outint(multiply(7,8), 2);
Outimage
END