/**
 * Example of label break
 */

public class label
{
    public static void main(String[] args)
    {

    outerLoop:                                          //label  
        for (int row =1; row <=10; row++)
        {
            System.out.println();

    innerLoop:                                          //label      
            for (int column = 1; column <=10; column++)
            {
                if (column > row)
                    continue outerLoop;

                System.out.print("# ");
            }
        }
        System.out.println();
    }
}