star (int I)
{
int k=I;t:
put (\'*\');
if (k & ~0)
goto t;
star( I-1);
}