prog;
begin
	var i : int;
	var j : real;
	var k : string
	read i;
	read j;
	read k;
	write i, ", ", j, ", ", k;
end;
end prog
