Untitled

Anonymous
plain_text
02/12/2024 2:50 AM
176 B
10
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