#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(userLimit >= 1) { cout << userLimit << endl; userLimit--; } return 0; }