#!/usr/bin/env python3

# Save the first command-line argument to a variable called n.
#  Also convert to integer.

# Make a loop that has a variable k goes from 1 to n.
# Inside the loop check if k // 8 == k % 8.  If it is, print k.


# The following is an example of what the program would print for
# an example input.
# ./loop.py 22
# 9
# 18