#include "value.h"

int main()
{
   Value<float> vf;
   Value<double> vd;
   float f;
   double d;
   vf.mult(vf);
   vf.mult(vd);
   vd.mult(vf);
   vd.mult(vd);

   vf.easy(vf);
   //vf.easy(vd);
   //vd.easy(vf);
   vd.easy(vd);
}
