Skip to content

Latest commit

 

History

History
44 lines (24 loc) · 760 Bytes

File metadata and controls

44 lines (24 loc) · 760 Bytes

[Bronze V] Rectangles - 15232

문제 링크

성능 요약

메모리: 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.