Write a program to Print Inverted triangle
Take m as an integer input, where m tab separated stars are printed in the first line. Then you have to print the pattern below.
Eg. for m=7, the output is written under.
* * * * * * *
* * * * *
* * *
*
Input Format
m will be given as an integer output.
Constraints
1<=m<=2^31-1
Output Format
Print the pattern as given under
Sample Input 0
7
Sample Output 0
* * * * * * *
* * * * *
* * *
*
Sample Input 1
5
Sample Output 1
* * * * *
* * *
*