4 lines
57 B
Python
4 lines
57 B
Python
|
|
import sys
|
||
|
|
for n in xrange(sys.maxint):
|
||
|
|
print oct(n)
|