Module: (Python) Workshop - 3: "A Few Harry Potter Facts"


Problem

1 /7


Faculties of Hogwarts

Problem

Usually before enrolling at age 11 at Hogwarts, wizarding children are brought up at home because there is no guarantee that they will be able to hide their magical abilities from their Muggle classmates. For example, the Weasley children were taught by Mrs. Weasley at the Burrow.
Hogwarts has 4 houses. The four houses at Hogwarts correspond to the four elements: Gryffindor – fire, Ravenclaw – air, Hufflepuff — earth, Slytherin – water.
Each faculty has its own flag. 
Write a program that, given a number n from 1 to 9, displays n flags. The image of one flag has a size of 4x4 characters, there is also an empty (space) column between two adjacent flags.
It is allowed to output an empty column after the last flag. Each flag must contain its number — number from 1 to n.

Input
Enter a natural number.

Imprint 
Print the answer to the problem.

Examples
# Input Output
1 3
+___ +___ +___
|1 / |2 / |3 /
|__\ |__\ |__\
| | |