/*
 * les fonctions
 */

#include <stdio.h>

void affichage() {
  printf("Bonjour\n");
}

int main() {
  affichage(); 

  return(0);
}
