Untitled
unknown
plain_text
2 years ago
132 B
7
Indexable
rows = int(input())
cols = int(input())
for rows in range(rows):
for cols in range(cols):
print('*', end = ' ')
print()Editor is loading...
Leave a Comment
rows = int(input())
cols = int(input())
for rows in range(rows):
for cols in range(cols):
print('*', end = ' ')
print()