#include using namespace std; int main() { int userInput; int i {0}; cout << "Enter the number to count to => "; cin >> userInput; i = 1; while( i <= userInput ) { cout << "i = " << i << endl; ++i; } return 0; }