#include using namespace std; int main() { int i{1}; //while (i < 101) { while(1) { cout << i << endl; i++; } return 0; }