Pattern 3

easy
1. You are given a number n.
2. You've to create a pattern of * and separated by tab as shown in output format.

Input Format

A number n

Output Format

<img src="http://pepcoding.com/resources/ojquestionresource/images/pat31.JPG" alt="pat31">

Constraints

1 <= n <= 10

Notice

Try First, Check Solution later

1. You should first read the question and watch the question video.
2. Think of a solution approach, then try and submit the question on editor tab.
3. We strongly advise you to watch the solution video for prescribed approach.

Example

Input
5
Output
				*	
			*	*	
		*	*	*	
	*	*	*	*	
*	*	*	*	*	
Previous
Pattern 2
Next
Pattern 4

Related Questions