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

int
main (void)
{
  /* Vous pouvez écrire votre code ici, après ce commentaire. */
  int i;
  for (i = 0; i < 3; i = i + 1)
    printf ("Bonjour\n");

  return EXIT_SUCCESS;
}
