mirror of
https://github.com/tiennm99/CodePower.git
synced 2026-06-06 08:10:50 +00:00
5 lines
100 B
Python
5 lines
100 B
Python
n = int(input())
|
|
for i in range(n):
|
|
for j in range(n):
|
|
print('*', end = ' ')
|
|
print() |