perfect square free by recursive

print[v for v in range(3,100)if int(v**.5)**2-v]

Note that non-ascii characters in the above source code will be escaped (such as \x9f).

download

return to the top page