a, b = map(int, input().strip().split(' '))

for i in range(b):
    print("*" * a)

+ Recent posts