Ответ: program summa;var a,s,i:integer;begins:=0;for i:=10 to 99 do beginif (i mod 5=0) then s:=s+sqr(i);end;writeln(s);end.: