#include <iostream>
usingnamespace std;
int main(){
int countLimit = 0;
int printVal = 0;
// Get user input
cout << "What we counting to? "; cin >> countLimit;
printVal = 0; //printVal set to 0
do{
cout << printVal << " "; //Print the value
countLimit--; //What is countLimit/?/5/4/3/2/1/0
printVal = printVal + 1; //Increment printVal/+/0/1/2/3/4/5
}while (countLimit >= 0); //WHILE countLimit is NOT 0.... Do stuff!!
system("pause");
}