begin
comment: complex numbers input/output and addition;
	complex c1, c2, c3;
	
	read(c1);  % input example:  2+3I %
	read(c2);

	c3 := c1 + c2;
	write(c3);
end
----stdout comments:
- new data type 'complex'