Print inverted triangle with * characters.
Write a complete program: read the input with input() and print the result with print().
input()
print()
# n=4 **** *** ** *
Input
4
Output
**** *** ** *