#include <iostream>
#include <cstdint>
int main()
{
uint32_t i = 0;
while(true)
std::cout << ++i << std::endl;
return 0;
}