L-1 Print all number's multiples up to 10
Write a program that accepts a number and prints to the console it's multiplication table, up to 10.
For example the number 5 case, should print to the console the following sequence of numbers:
5
10
15
20
25
30
35
40
45
50
The same for number 7: 7, 14, 21, 28, 35 ..... 70 etc.