/*
 * affichage d'un message
 */

#include <stdio.h>

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