Определи, что будет напечатано в результате выполнения следующей программы:
program ho9;
var i, x, y, z: integer;
const a: array [1..7] of integer = (1, -7, 3, -6, 0, -1, 2);
begin
х := 0; у := 0; z := 0;
for i := 1 to 6 do begin
if a[i] > 0 then x := x+1;
if a[i] < 0 then y := y+2;
if a[i] = 0 then z := z*3;
end;
writeln (‘y=’, y, ‘ ‘, ‘z=’, z, ‘ ‘, ‘x=’, x);
end.