public class Thing
{
  public static void main(String args[])
  {
    int x, y;

    for (x = 0; x < 5; x++)
    {
      for (y = 0; y < 3; y++)
      {
        System.out.println("x = " + x + " y = " + y);
      }
    }
  }
}
