#!/usr/bin/env python3 # Read two command-line argument to variables called a and b # Convert both to integers # Make a loop that goes from 1 to a (including a) # Inside the loop check to see if the current value % b == 0. # If it is print the number # I did this one on the board