Some options:
auto bi = "123456789";
auto bi2 = 12345;
auto bi3 = 123456789;
auto bi4a = 123456789L;
auto bi4b = 178923456789L;
auto bi5a = 123456789LL;
auto bi5b = 123456784732899;
auto bi6 = 123456789UL;
auto bi7 = 123456789ULL;
All of the above examples depend on the system you are using.
In the standard, in [lex.icon]Table 5 - References to types of integer literals:
The integer literal type is the first of the corresponding list in Table 5 in which its value can be represented.
, , U L , :
