// affiche "bonjour"
//
#include <stdio.h>

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