# Python3 count_in_oct.py by Xing216 import sys for n in range(sys.maxsize): print(oct(n))