#include <iostream>
using namespace std;

int main() {

	try {
		int i = 1;
	}
	catch( ... )
	{}
	
	cout << i;

	return 0;
}