Looped grid by potato

a=range(1,input()+1)
for i in a:
    for j in a:
        print j,
    print
    a=[i+1]+a[:-1]

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

download

return to the top page