What is the output of this program?
#include <iostream.h>
#include <algorithm.h>
#include <vector.h>
using namespace std;
bool myfunction (int i,int j) { return (i<j); }
int main ()
{
int myints[] = {9, 8, 7, 6, 5};
vector<int> myvector (myints, myints + 5);
partial_sort (myvector.begin(), myvector.begin() + 3, myvector.end());
partial_sort (myvector.begin(), myvector.begin() + 2, myvector.end(),
myfunction);
for (vector<int> :: iterator it = myvector.begin(); it != myvector.end(); ++it)
cout << ' ' << *it;
return 0;
}