// break und Marken
// Walter Herglotz 2000

class break3
{
  public static void main (String args[])
    {
    TestSchleife:
    for (int x = 1; x < 3; x ++)
        {
        NochEinLabel:
        for (int y = 1; y < 10; y++)
            {
            System.out.println("X = " + x);
            System.out.println("Y = " + y);
            if (y > 2)
                break NochEinLabel;
            }
        }
    }
}
