1.vara,k,i,c: integer;beginc:=0;write('Введите количество чисел в последовательности: ');readln(k);for i := 1 to k dobeginwrite('Введите число: ');readln(a);if (a mod 2 = 1) and (a mod 10 <> 1) then c:=c+1end;if c>0 then writeln('YES')else writeln('NO')end.2.vara,k,i,c: integer;beginc:=0;write('Введите количество чисел в последовательности: ');readln(k);for i := 1 to k dobeginwrite('Введите число: ');readln(a);if (a mod 2 = 1) and (a mod 3 = 0) then c:=c+1end;writeln(c)end.