#include <iostream>
using namespace std;

struct bar {
	bar() try {
		throw 5;
	}
	catch (int a) {
		cout << "zlapalem " << a << " !!!!111oneoneone" << endl;
	}
};

int main() {
	try {
		bar b;
	} catch (int a) {
		cout << "ja tez zlapalem " << a << " ;>" << endl;
	}
	return 0;
}