시간 제한메모리 제한제출정답맞힌 사람정답 비율
2 초 512 MB21231842173987.475%

문제

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.

예제 입력 1

3
5

예제 출력 1

*****
*****
*****

출처

Olympiad > All-Ireland Programming Olympiad > 2017 AIPO Preliminary Round 1번

  • 잘못된 데이터를 찾은 사람: tncks0121