Write a Program to Print the Dumroo pattern.
Given m as integer input, where m tab separated stars are printed in the first line,
Eg. for m=7, the output is written under.
* * * * * * *
* * * * *
* * *
*
* * *
* * * * *
* * * * * * *
Recognize the pattern and print the final output.
Input Format
m will be given as an integer input in the first line.
Constraints
3<=m<=2^31-1
m will be an odd positive integer.
Output Format
Print the pattern accordingly.