Multiplication table by Volatility

r=range(input()+1)\x0d
for i in r:print''.join('%-4d'%(j,i*j**(j>0))[i>0]for j in r).strip()

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

download

return to the top page