# Arup Guha
# 6/14/2022
# Parallelogram

width = int(input("How wide is your parallelogram?\n"))
length = int(input("How long/tall is your parallelogram?\n"))

# sp represents the # of spaces on each row.
for sp in range(length):

    # Print sp spaces.
    for i in range(sp):
        print(" ", end="")

    # Every row has width # of stars.
    for i in range(width):
        print("*", end="")

    # Go to next row.
    print()
