RosettaCodeData/Task/Babbage-problem/Phix/babbage-problem-1.phix
2024-10-16 18:07:41 -07:00

4 lines
116 B
Text

with javascript_semantics
for i=2 to 99736 by 2 do
if remainder(i*i,1000000)=269696 then ?i exit end if
end for