5 lines
95 B
Python
5 lines
95 B
Python
|
|
# Python3 count_in_oct.py by Xing216
|
||
|
|
import sys
|
||
|
|
for n in range(sys.maxsize):
|
||
|
|
print(oct(n))
|