#include using namespace std; int main() { int userLimit{0}; int i {1}; while (userLimit <= 1) { cout << "This program will count from 1 to a limit you give." << endl; cout << "Enter the limit (bigger than 1) "; cin >> userLimit; cout << endl; } while ( i <= userLimit ) { cout << i << endl; i++; } return 0; }