begin integer n; read(n); if n < 0 then write("negative") else if n=0 then write("0") else write("positive"); end ----stdout comments: Algol60 program changes: - input/output functions