Pattern magic question in challenges

You will be given a number N. You have to code a hollow diamond looking pattern.

The output for N=5 is given in the following image.

Screen Shot 2016-06-09 at 2.47.18 pm.png

Input Format
The input has only one single integer N.

Constraints

Output Format
Output the given pattern.

Sample Input
5
Sample Output





  •   *
    




Explanation
Write a code to print above given pattern. No space between any two characters. how we can do this in very starting of th c++ course the logic is not built for this question for now