#include "operateur.h"

/*
 * utilisation de fichiers d'en-tête (.h)
 */

int add(int a, int b) {
	return a+b;
}
