Language/Python

[Python / 프로그래머스 level 1] 직사각형 별찍기

ej503 2021. 6. 16. 10:42

a, b = map(int, input().strip().split(' '))
for i in range(b):
    print("*" * a)