#include <stdio.h>
#include <stdlib.h>
#include <stdbool.h>
#include <math.h>

int
main (void)
{
  int i;
  for (i = 0; i < 10; i ++)
    {
      printf ("%i foo", i);
      if (i == 5)
        break;
      printf ("bar\n");
    }
  return EXIT_SUCCESS;
}
