#include "operators.h"

int add(int a,int b) {
  int somme = a + b;

  return(somme);
}
