#include <stdio.h>

/*
 * afficher un message
 */

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