// Testing some associativity
#include <iostream>
using namespace std;

int main() {

double i = ! - 0;
cout << " i = " << i << endl;

int j = 0;
int k = (++j) * (5+ j);
cout << k << endl;
int x =0;
cout << (x, ++x, 5*x) << endl;
return 0;
}
