#include using namespace std; int main() { int counter; cout << "Where should I start the countdown? "; cin >> counter; do { cout << counter << endl; counter--; } while (counter >= 0); }