RosettaCodeData/Task/Babbage-problem/Sidef/babbage-problem.sidef

6 lines
63 B
Plaintext

var n = 0
while (n*n % 1000000 != 269696) {
n += 2
}
say n