Skip to content

Instantly share code, notes, and snippets.

@YOUNGJUN2
Created July 3, 2019 06:46
Show Gist options
  • Save YOUNGJUN2/ed4423522c583ac6e00974a825fefa2b to your computer and use it in GitHub Desktop.
Save YOUNGJUN2/ed4423522c583ac6e00974a825fefa2b to your computer and use it in GitHub Desktop.
a, b = map(int, input().strip().split(' '))
for i in range(b):
for j in range(a):
print("*", end="")
print("")
# 문제: https://programmers.co.kr/learn/courses/30/lessons/12969
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment