Untitled
unknown
plain_text
a year ago
132 B
4
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()