#include int main(void) { int count = 1; while (count <= 100) { cout << count << endl; count++; // Notice this statement } return 0; }