# Counting Machine Revisited Write a program that gets three integers from the user. Count from the first number to the second number in increments of the third number. Use a `for` loop to do it. Name the file `counting_machine_revisited.py` ``` Count from: 4 Count to : 13 Count by : 3 4 7 10 13 ```   ``` Count from: 5 Count to : 20 Count by : 5 5 10 15 20 ```   ``` Count from: 2 Count to : 10 Count by : 1 2 3 4 5 6 7 8 9 10 ``` --- ©2021 Daniel Gallo This assignment is licensed under a [Creative Commons Attribution-NonCommercial-ShareAlike 3.0 United States License](https://creativecommons.org/licenses/by-nc-sa/3.0/us/deed.en_US). ![Creative Commons License](images/by-nc-sa.png) Adapted for Python from Graham Mitchell's [Programming By Doing](https://programmingbydoing.com/)