1% testing the binomial distribution for both float and integer means
2varint:x; 3varint:y; 4int:myInt1=binomial(10,0.5); 5int:myInt2; 6myInt2=binomial(2,0.3); 7constraintx+y<myInt1; 8constraintx+y>myInt2; 910solvesatisfy;11output["x = ",show(x),"\ny = ",show(y)];