Problem F
Skip Counting
"Skip Counting" is a technique to teach multiplication tables. The idea is to skip some numbers while counting, such as starting at 0 and counting by 5’s (but not reciting the 0): 5, 10, 15, 20, ... . Students may form a circle and take turns reciting the successive numbers.
Your task is to write a program to help a student learn to skip count by using a number they enter. Your program will be given an integer, and it should print out the first 12 multiples of that number, each on a separate line.
Input
There will be a single positive integer on the input line. This number will never be more than 1,000,000.
Output
Display the first 12 multiples of the given number, one per line.
Sample Input 1 | Sample Output 1 |
---|---|
5 |
5 10 15 20 25 30 35 40 45 50 55 60 |