begin
comment straightforward loop;
	integer n;
	n := 0;
	
start:;
	if n = 20 then goto finish
	else 
	begin
		n := n + 1;
		write( n);
		goto start
	end;
finish:;	
end
----stdout comments:
Algol60 program changes:
- input/output functions
