sum of square numbers by oofoe

REBOL[]while[i: input][r: 0 for x 1 to-integer i 1[r: x * x + r] print r]

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

download

return to the top page