Problem Statement
Write a program that reads two integers R and C from standard input, representing the number of rows and columns respectively. Your task is to print a rectangle of numbers with R rows and C columns, where each row contains the numbers from C down to 1 in descending order. Each number should be separated by a space.
For example, if R=3 and C=2, the output should be:
2 1
2 1
2 1
If R=5 and C=3, the output should be:
3 2 1
3 2 1
3 2 1
3 2 1
3 2 1
Note no spaces at the end of each line in the output