Find and display all two-digit numbers whose sum of squares is divisible by 16 without a remainder.

program bacterya;
var i, n: integer;
begin
for i: = 10 to 99 do
if ((i div 10) * (i div 10) + (i mod 10) * (i mod 10)) mod 16 = 0 then writeln (i);
end.
Answer: 40, 44, 48, 80, 84, 88



One of the components of a person's success in our time is receiving modern high-quality education, mastering the knowledge, skills and abilities necessary for life in society. A person today needs to study almost all his life, mastering everything new and new, acquiring the necessary professional qualities.