문제링크: 직사각형 별찍기
✍🏻 Information
🍒 My Code
a, b = map(int, input().strip().split(' ')) for i in range(b): tmp = '*'*a print(tmp)
💡 What I learned
answer = ('*'*a +'\n')*b