RosettaCodeData/Task/Babbage-problem/Phix/babbage-problem-1.phix

5 lines
116 B
Plaintext

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