#include <iostream>
#include <string>

using namespace std;

int main()
{
	try
	{
		throw - 1;
	}
	catch (int x)
	{
		cerr << "We caught: " << x << endl;
	}
	catch (const string &name)
	{
		cerr << "We caught: " << name << endl;
	}

	return 0;
}