메모리: 2020 KB, 시간: 0 ms
구현
2024년 9월 22일 23:20:38
Read two integer numbers R and C from the standard input and then print R lines with C asterisks (*) each.
Example (R=3, C=5):
***** ***** *****
Example (R=2, C=10):
********** **********
The first line will contain an interger R. The number of lines to print.
The second line will contain an integer C. The number of asterisks to print in each line.
R, C will be at most 20.
Print a rectangle of R lines and C columns.