print("Unesite broj n: ")
n = int(input())

for v in range(n):
    for k in range(n):
        print('*', end="")
    print()

print()    
