comma operator in C++

```
#include <iostream>

int main() {
  int x = (10, 20); // 20
  int x = 10, 20; // 10
  std::cout << x;
}
```