w = int(input('Enter a width: '))
h = int(input('Enter a height: '))
f = input('Filled or nah (y/n): ')

while h > 0 :
    print(w * ' +')
    h = h - 1