#include #include using namespace std; int main() { vectordata{1,3,5,7,9}; try { cout << "Data.at(data.size()) is " << endl; cout << endl; cout << data.at(data.size()) << endl; cout << "And that is that " << endl; cout << endl; } catch (...) { cout << "Something went wrong, in the exception handler" << endl; } cout << "Done with the program" << endl; return 0; }