/*
 * affiche bonjour
 */
#include <stdio.h> //en-têtes

int main() {
  printf("Bonjour\n");
  return(0);
}
