1   outer:for(int i = 0; i < 4; ++i)
2   {
3        inner:for(int j = 0; j < 4; ++j)
4        {
5            System.out.println("Hello!");
6            break outer;
7        }
8  }
9