Try digit separator:
int i = 1'000'000'000;
This feature is introduced since C++14. It uses single quote (') as digit separator.
Also see:
- Why was the space character not chosen for C++14 digit separators?
- Generalizing Overloading for C++2000 (April's joke by the father of C++ himself)