#include<iostream>
usingnamespace std;
int main()
{
void countdown(int high, int low);
int high,low;
cout << "I will count down from the higher number you enter " <<
"to the lower one." << endl;
cout << "Enter a number > ";
cin >> high;
cout << "Enter another number > ";
cin >> low;
if(high < low)
swap (high,low);
countdown(high, low);
return 0;
}
void countDown(int lowest, int highest)
{
int x;
for(x = highest; x = lowest; --x)
cout << x << " " << endl;
}