Factorial by VaughnSR

while 1:
 p=1
 for i in range(1,input()+1):p*=i
 print p\x09\x09

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

download

return to the top page