class lecture4_2
{
  public static void main(String args[])
  {
     int Counter=1;
     
     while (Counter <= 5)
     {
        System.out.println("In the while loop and Counter is "+Counter);
        Counter = Counter + 1;
     }
  }
}

