탶선
2020. 2. 8. 12:53
반응형
star_string = " * "
size = int(input("please input size"))
for i in range(size):
print(star_string *size)
반응형