extern int a, b, c;

void test()
{
  do
  {
    b += a;
    a ++;
    c = a < 10;
  }
  while ( c );
}

