12 lines
187 B
C++
12 lines
187 B
C++
|
|
#include <cstdint>
|
||
|
|
#include <iostream>
|
||
|
|
#include <limits>
|
||
|
|
|
||
|
|
int main()
|
||
|
|
{
|
||
|
|
auto i = std::uintmax_t{};
|
||
|
|
|
||
|
|
while (i < std::numeric_limits<decltype(i)>::max())
|
||
|
|
std::cout << ++i << '\n';
|
||
|
|
}
|