Program a8_6;
uses crt;
const n=2;
var a:array[1..n,1..n] of integer;
i,j:integer;
q:boolean;
BEGIN
clrscr;
randomize;
q:=false;
writeln(' Массив');
for i:=1 to n do
begin
for j:=1 to n do
begin
a[i,j]:=random(9)-1;
write(a[i,j]:3);
if a[i,j]=0 then q:=true;
end;
writeln;
end;
writeln;
if q=true then writeln('Да') else writeln('Нет');
readln;
END.