var
i, j, minlen, ind, count, countrow: ineteger;
A:array[10, 10] of integer;
begin
for i:=1 to 10 do
for j:=1 to 10 do
readln(A[i,j]);
ind:=1;
minlen:=11;
count:=1;
countrow:=1;
for j:=2 to 10 do
if (A[i,j]=A[i,j-1]) then
inc(count)
else
if (count>countrow) then
countrow:=count;
end;
if (countrow<minlen) then
minlen:=countrow;
ind:=i;
writeln(A[ind,j])
end.
var a,b,c,s:integer;
read(a);
read(b);
read(c);
s:=(a+b+c) mod 3 mod вробная часть от деления
var post,Bes:real;
read(post);
Bes:=post-100; (кг)=(рост(см) - 100
var m,n,k:integer;
read(m);
read(n);
read(k);
o:=m*2+n*0+k*1
var x:integer;
read(x);
if x mod 2 =0 then write('чот') else write('нечет');
if x mod 10=7 then write('на конце 7') else write('не 7');
///write(x) выводит значение переменой;
var
i, j, minlen, ind, count, countrow: ineteger;
A:array[10, 10] of integer;
begin
for i:=1 to 10 do
for j:=1 to 10 do
readln(A[i,j]);
ind:=1;
minlen:=11;
for i:=1 to 10 do
begin
count:=1;
countrow:=1;
for j:=2 to 10 do
begin
if (A[i,j]=A[i,j-1]) then
inc(count)
else
begin
if (count>countrow) then
countrow:=count;
count:=1;
end;
end;
if (countrow<minlen) then
begin
minlen:=countrow;
ind:=i;
end;
end;
for j:=1 to 10 do
writeln(A[ind,j])
end.
var a,b,c,s:integer;
begin
read(a);
read(b);
read(c);
s:=(a+b+c) mod 3 mod вробная часть от деления
end;
var post,Bes:real;
begin
read(post);
Bes:=post-100; (кг)=(рост(см) - 100
end;
var m,n,k:integer;
begin
read(m);
read(n);
read(k);
o:=m*2+n*0+k*1
end;
var x:integer;
begin
read(x);
if x mod 2 =0 then write('чот') else write('нечет');
end;
var x:integer;
begin
read(x);
if x mod 10=7 then write('на конце 7') else write('не 7');
end;
///write(x) выводит значение переменой;