perfect square free by Hawkseye

import math\x0d
print filter(lambda i:int(math.sqrt(i))**2<i,range(3,100))

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

download

return to the top page