public class WhileDemo
{
  public static void main (String[] args)
  {
    int limit = 3;
    int counter = 1;
    
    while (counter >= counter)
    {
      System.out.println("The square of " + counter + 
                         " is " + (counter * counter));
      counter = counter + 1000000;
    }
    System.out.println("End of demonstration");
  }
}

