//File:	Vee.java
public class Vee
{
	public static void main (String [] args)
	{
		for (int row=0; row < 11; row++)
		{
			//Print a line of *'s
			for (int col = 0; col <= Math.abs (row-5); col++)
			{
				System.out.print ("*");
			}
			System.out.println(); //go to next line
		}
	}
}