Question: Write a Python program that reads two numbers m and n, such that 1
Write a Python program that reads two numbers m and n, such that 1 <= m <= 10 and 0 <= n <= 99. The program must print the numbers from 0 to n, printing m numbers per line. The numbers must be separated by one or two spaces in such a way that the numbers are right aligned in each column.
Sample Input
6
21
Sample Output
0 1 2 3 4 5
6 7 8 9 10 11
12 13 14 15 16
17 18 19 20 21
Step by Step Solution
There are 3 Steps involved in it
Get step-by-step solutions from verified subject matter experts
