بيان المشكلة
Write a program that reads two integers R and C, and prints a solid rectangle made of asterisks (*) with R rows and C columns.
Example
If R = 3 and C = 5, the output should be:
Requirements
- Use nested loops to generate the pattern.
- Each row must contain exactly
Casterisks. - There should be exactly
Rrows printed.