/*
   Author:
   Description:

   Given the height (integer), print to the screen a "sideway"
   triangle using asterisks.

   For example, if the height is 5

*
**
***
****
*****
****
***
**
*

   Extra 1 (regular, not sideway, triangle)

    *
   ***
  *****
 *******
*********

   Extra 2 (complement/silhouette triangle)


**** ****
***   ***
**     **
*       *

   Extra 3 (bow tie)

*       *
**     **
***   ***
**** ****
*********
**** ****
***   ***
**     **
*       *

         

*/


import java.io.*;
import java.util.*;

public class Triangle
{
    public static void main(String[] argv)
    {
	// start instructions here
	int height = 5;





	// System.out.println("this goes to the screen");  // template for screen output

	System.out.println("Extra 1");
	// start instructions here






	System.out.println("Extra 2");
	// start instructions here







	System.out.println("Extra 3");
	// start instructions here







    }
}
