12 lines
183 B
Python
12 lines
183 B
Python
n = int(input())
|
|
m = int(input())
|
|
|
|
teamsize = m // n
|
|
extras = m % n
|
|
|
|
for i in range(n):
|
|
if i < extras:
|
|
print("*" * (teamsize + 1))
|
|
else:
|
|
print("*" * teamsize)
|