PROGRAMMING:Printing an inverted right triangle
Please program and print the following figure.
$$$$$
$$$$
$$$
$$
$
The first line is preceded by a space.
###Output format:
In the format of inverted right triangle, output 5 lines of triangle graphics composed of "$" symbols, each "$" symbol occupies a fixed position, and there is a space before the first "$" symbol in the first line.
###Output example:
```out
$$$$$
$$$$
$$$
$$
$
```
answer:If there is no answer, please comment
$$$$$
$$$$
$$$
$$
$
The first line is preceded by a space.
###Output format:
In the format of inverted right triangle, output 5 lines of triangle graphics composed of "$" symbols, each "$" symbol occupies a fixed position, and there is a space before the first "$" symbol in the first line.
###Output example:
```out
$$$$$
$$$$
$$$
$$
$
```
answer:If there is no answer, please comment