# Author: Scott Wehrwein
# Date: 04/13/2021
# Demonstrates "counting" up, down, and by an interval using a while loop.

i = 10

while i >= 1:
    print(i)
    i = i - 1