// This rule specifies whether you have to have
// spaces ' ' around binary expressions.
// Binary expressions have operands on both sides
// of the operator.

// without spaces
int i=MAX*2;
long l=i+(MIN-MAX/2);
...
for (int i=0; i<10; i++)
{
...

// with spaces around binary expressions
int i = MAX * 2;
long l = i + (MIN - MAX / 2);
...
for (int i = 0; i < 10; i++)
{
...