# Arup Guha
# 2/17/2012
# COP 3223H Exam 1 Question #7 Solution

def main():
    
    length = int(input("What is the parallelogram length?\n"))
    width = int(input("What is the parallelogram width?\n"))

    for i in range(length):
        print((i*" ")+width*"*")

main()
