#include "stdio.h"

void writename();

void writename()
{
   printf("John Q. Doe\n");
}


int main()
{
int index;

   for(index = 0 ; index < 10 ; index = index + 1)
      writename();

   return 0;
}



/* Result of execution

John Q. Doe
John Q. Doe
John Q. Doe
John Q. Doe
John Q. Doe
John Q. Doe
John Q. Doe
John Q. Doe
John Q. Doe
John Q. Doe

*/
