The code lines read as follows:


if (123 < 10)
{
   cout << 123 << end1;
}
else //n is two or more digits long:
{
   writeVertical(123 / 10);
   cout << (123 % 10) << end1;
}

The “cout” line is annotated “Computation resumes here.”