#include "Operator.h"
class Soustraction : public Operator{
public:
Soustraction();
std::string getLibelle();
float* calc();
};