main()
{
   int A;

   A = 50;
   while(A > 5)
   {
      A--;
   }

   while(A < 5)
   {
      A--; /* Will this loop ever end? */
   }
}
