#include <exception>
#include <iostream>
 
using namespace std;
 
int main(void)
{
    try{
        throw invalid_argument("invarg");
    }
    catch(exception const &e){
        cout << e.what();
    }
    return 0;
}
