PROGRAMMING:Write the letter H
The letter 'H' can be output in this way. Program output ` H`
```
* *
* *
* *
* *
```
###Input format:
nothing
###Output format:
Output letter 'H' graphics.
###Input example:
Here is a set of inputs. For example:
```in
```
###Output example:
The corresponding output is given here. For example:
```out
* *
* *
* *
* *
```
answer:If there is no answer, please comment
```
letter_ H="* *\n* *\n\n* *\n* *"
print(letter_ H)
```
```
* *
* *
* *
* *
```
###Input format:
nothing
###Output format:
Output letter 'H' graphics.
###Input example:
Here is a set of inputs. For example:
```in
```
###Output example:
The corresponding output is given here. For example:
```out
* *
* *
* *
* *
```
answer:If there is no answer, please comment
```
letter_ H="* *\n* *\n\n* *\n* *"
print(letter_ H)
```